Enable Gnome fractional scaling
This commit is contained in:
parent
adde0fd2a6
commit
1bcec1332c
|
@ -1,9 +1,12 @@
|
||||||
{ lib, pkgs, osConfig, ... }: {
|
{ lib, pkgs, osConfig, ... }: {
|
||||||
# Additional Gnome configurations via home-manager. Imported by default by aires and gremlin.
|
# Additional Gnome configurations via home-manager.
|
||||||
dconf.settings = lib.mkIf osConfig.host.ui.gnome.enable {
|
dconf.settings = lib.mkIf osConfig.host.ui.gnome.enable {
|
||||||
"org/gnome/mutter" = {
|
"org/gnome/mutter" = {
|
||||||
edge-tiling = true;
|
edge-tiling = true;
|
||||||
workspaces-only-on-primary = false;
|
workspaces-only-on-primary = false;
|
||||||
|
experimental-features = [
|
||||||
|
"scale-monitor-framebuffer" # Fractional scaling
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
"org/gnome/desktop/interface" = {
|
"org/gnome/desktop/interface" = {
|
||||||
|
|
Loading…
Reference in a new issue