diff --git a/modules/gnome-config.home.nix b/modules/gnome-config.home.nix index 4f7a638..39acdf8 100644 --- a/modules/gnome-config.home.nix +++ b/modules/gnome-config.home.nix @@ -2,6 +2,7 @@ { # https://github.com/danieldk/nix-home/blob/master/home/cfg/desktop.nix + # https://github.com/Martins3/My-Linux-Config/blob/master/nixpkgs/home/app/gnome.nix programs.dconf.enable = true; @@ -9,6 +10,7 @@ dconf.settings = { "org/gnome/settings-daemon/plugins/color" = { night-light-enabled = true; + night-light-schedule-automatic = false; #night-light-temperature = "uint32 3700"; }; @@ -16,6 +18,14 @@ dynamic-workspaces = true; workspaces-only-on-primary = true; }; + + "org/gnome/desktop/interface" = { + # Dark Style + color-scheme = "prefer-dark"; + # Multitasking > General > Hot Corner + enable-hot-corners = false; + show-battery-percentage = true; + }; }; }; }