nix-git/modules/gnome-config.nix

63 lines
2.1 KiB
Nix
Raw Normal View History

2023-09-06 19:29:51 +02:00
{ config, pkgs, ... }:
{
# https://github.com/danieldk/nix-home/blob/master/home/cfg/desktop.nix
2023-09-06 19:40:13 +02:00
# https://github.com/Martins3/My-Linux-Config/blob/master/nixpkgs/home/app/gnome.nix
2023-09-06 19:29:51 +02:00
2023-09-07 16:56:55 +02:00
# gsettings (or dconf-editor) schemas are spread throughout the nix store.
# One can use a script to add them to $XDG_DATA_DIRS and then execute a command.
# Here is an example script:
# https://github.com/NixOS/nixpkgs/issues/33277#issuecomment-354689755
2023-09-06 19:29:51 +02:00
programs.dconf.enable = true;
home-manager.users.yoda = { osConfig, config, pkgs, ... }: {
dconf.settings = {
2023-09-16 17:37:19 +02:00
"org/gnome/desktop/media-handling" = {
# Settings > Removable Media > Never promt or start apps on media insertion
autorun-never = true;
};
2023-09-16 17:22:30 +02:00
"org/gnome/settings-daemon/plugins/power" = {
# Settings > Automatic Suspend > Plugged In
sleep-inactive-ac-type = "nothing";
# Settings > Automatic Suspend > On Battery Power
sleep-inactive-battery-type = "suspend";
};
2023-09-16 16:06:58 +02:00
"org/gnome/desktop/privacy" = {
# Settings > File History > Enabled
remember-recent-files = true;
# Settings > File History > File History Duration
recent-files-max-age = 30;
# Settings > Trash and Temporary Files > Automatically Delete Trash Content
remove-old-trash-files = true;
# Settings > Trash and Temporary Files > Automatically Delete Temporary Files
remove-old-temp-files = true;
# Settings > Trash and Temporary Files > Automatically Delete Period
old-files-age = 30;
};
2023-09-06 19:29:51 +02:00
"org/gnome/settings-daemon/plugins/color" = {
night-light-enabled = true;
2023-09-06 19:40:13 +02:00
night-light-schedule-automatic = false;
2023-09-06 19:29:51 +02:00
#night-light-temperature = "uint32 3700";
};
"org/gnome/mutter" = {
dynamic-workspaces = true;
workspaces-only-on-primary = true;
};
2023-09-06 19:40:13 +02:00
"org/gnome/desktop/interface" = {
# Dark Style
color-scheme = "prefer-dark";
# Multitasking > General > Hot Corner
enable-hot-corners = false;
show-battery-percentage = true;
};
2023-09-06 19:29:51 +02:00
};
};
}