fixed dconf issues fractional scaling works now

This commit is contained in:
specCon18 2023-03-29 17:55:05 -04:00
parent 5810685c03
commit fe291a56ab
3 changed files with 19 additions and 4 deletions

View file

@ -88,6 +88,11 @@
] #extra modules to load ] #extra modules to load
[]; #extra modules to be loaded by home-manager []; #extra modules to be loaded by home-manager
}; };
packages.${system} = {
dconfnixdump = pkgs.writeScriptBin "deconfnixdump"''
dconf dump / | dconf2nix > dconf.nix
'';
};
}; };
} }

View file

@ -26,6 +26,7 @@
# base packages # base packages
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
cargo cargo
dconf2nix
rustc rustc
helix helix
bat bat

View file

@ -21,15 +21,22 @@
neofetch neofetch
vlc vlc
zellij zellij
zoxide
remmina remmina
signal-desktop signal-desktop
starship starship
alacritty alacritty
ncspot ncspot
bacon
]; ];
}; };
programs = { programs = {
zoxide = {
enable = true;
enableZshIntegration = lib.mkDefault true;
# enableNushellIntegration = false;
};
ncspot = { ncspot = {
enable = true; enable = true;
package = pkgs.ncspot; package = pkgs.ncspot;
@ -184,10 +191,12 @@
enable = true; enable = true;
settings = { settings = {
"org/gnome/mutter" = { "org/gnome/mutter" = {
experimental-features = [ attach-modal-dialogs = true;
"x11-randr-fractional-scaling" dynamic-workspaces = true;
"scale-monitor-framebuffer" edge-tiling = false;
]; experimental-features = [ "scale-monitor-framebuffer" ];
focus-change-on-pointer-rest = true;
workspaces-only-on-primary = true;
}; };
}; };
}; };