fixed dconf issues fractional scaling works now
This commit is contained in:
parent
5810685c03
commit
fe291a56ab
3 changed files with 19 additions and 4 deletions
|
|
@ -88,6 +88,11 @@
|
|||
] #extra modules to load
|
||||
[]; #extra modules to be loaded by home-manager
|
||||
};
|
||||
packages.${system} = {
|
||||
dconfnixdump = pkgs.writeScriptBin "deconfnixdump"''
|
||||
dconf dump / | dconf2nix > dconf.nix
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
|
|
@ -26,6 +26,7 @@
|
|||
# base packages
|
||||
environment.systemPackages = with pkgs; [
|
||||
cargo
|
||||
dconf2nix
|
||||
rustc
|
||||
helix
|
||||
bat
|
||||
|
|
|
|||
|
|
@ -21,15 +21,22 @@
|
|||
neofetch
|
||||
vlc
|
||||
zellij
|
||||
zoxide
|
||||
remmina
|
||||
signal-desktop
|
||||
starship
|
||||
alacritty
|
||||
ncspot
|
||||
bacon
|
||||
];
|
||||
};
|
||||
|
||||
programs = {
|
||||
zoxide = {
|
||||
enable = true;
|
||||
enableZshIntegration = lib.mkDefault true;
|
||||
# enableNushellIntegration = false;
|
||||
};
|
||||
ncspot = {
|
||||
enable = true;
|
||||
package = pkgs.ncspot;
|
||||
|
|
@ -184,10 +191,12 @@
|
|||
enable = true;
|
||||
settings = {
|
||||
"org/gnome/mutter" = {
|
||||
experimental-features = [
|
||||
"x11-randr-fractional-scaling"
|
||||
"scale-monitor-framebuffer"
|
||||
];
|
||||
attach-modal-dialogs = true;
|
||||
dynamic-workspaces = true;
|
||||
edge-tiling = false;
|
||||
experimental-features = [ "scale-monitor-framebuffer" ];
|
||||
focus-change-on-pointer-rest = true;
|
||||
workspaces-only-on-primary = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue