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 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
|
||||||
|
'';
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue