49 lines
1.2 KiB
Nix
49 lines
1.2 KiB
Nix
{...}: {
|
|
flake.homeModules.leylaDconf = {...}: {
|
|
config = {
|
|
gnome = {
|
|
extraWindowControls = true;
|
|
colorScheme = "prefer-dark";
|
|
clockFormat = "24h";
|
|
nightLight = {
|
|
enable = true;
|
|
automatic = false;
|
|
fromTime = 12.0;
|
|
toTime = 11.999999999999;
|
|
temperature = 2700;
|
|
};
|
|
extensions = {
|
|
dash-to-dock = {
|
|
enable = true;
|
|
options = {
|
|
"dock-position" = "LEFT";
|
|
"intellihide-mode" = "ALL_WINDOWS";
|
|
"show-trash" = false;
|
|
"require-pressure-to-show" = false;
|
|
"show-mounts" = false;
|
|
};
|
|
};
|
|
};
|
|
hotkeys = {
|
|
"Open Terminal" = {
|
|
binding = "<Super>t";
|
|
command = "kgx";
|
|
};
|
|
"Open Firefox" = {
|
|
binding = "<Super>f";
|
|
command = "firefox";
|
|
};
|
|
};
|
|
};
|
|
|
|
dconf = {
|
|
enable = true;
|
|
settings = {
|
|
"org/gnome/shell" = {
|
|
favorite-apps = ["org.gnome.Nautilus.desktop" "firefox.desktop" "codium.desktop" "steam.desktop" "org.gnome.Console.desktop"];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|