enable fractional scaling on gnome
This commit is contained in:
parent
ca6c27538f
commit
655536bb6a
1 changed files with 11 additions and 8 deletions
|
@ -1,13 +1,16 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
services = {};
|
||||
{ config, pkgs, ... }: {
|
||||
services = { };
|
||||
|
||||
xsession = {enable = false;};
|
||||
xsession = { enable = false; };
|
||||
|
||||
home.packages = with pkgs; [gnome-usage gnome3.gnome-tweaks];
|
||||
home.packages = with pkgs; [ gnome-usage gnome3.gnome-tweaks ];
|
||||
|
||||
dconf.settings = {
|
||||
"org/gnome/mutter" = {
|
||||
# https://github.com/NixOS/nixpkgs/issues/114514#issuecomment-1177709271
|
||||
experimental-features = [ "scale-monitor-framebuffer" ];
|
||||
};
|
||||
};
|
||||
|
||||
programs.gnome-terminal = {
|
||||
enable = true;
|
||||
|
|
Loading…
Reference in a new issue