mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-21 22:03:19 +01:00
22 lines
498 B
Nix
22 lines
498 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
# https://github.com/danieldk/nix-home/blob/master/home/cfg/desktop.nix
|
||
|
|
||
|
programs.dconf.enable = true;
|
||
|
|
||
|
home-manager.users.yoda = { osConfig, config, pkgs, ... }: {
|
||
|
dconf.settings = {
|
||
|
"org/gnome/settings-daemon/plugins/color" = {
|
||
|
night-light-enabled = true;
|
||
|
#night-light-temperature = "uint32 3700";
|
||
|
};
|
||
|
|
||
|
"org/gnome/mutter" = {
|
||
|
dynamic-workspaces = true;
|
||
|
workspaces-only-on-primary = true;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|