gnome config

This commit is contained in:
Daniel Langbein 2024-01-08 15:12:56 +01:00
parent 3363a0e570
commit 99603051cc
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002

View File

@ -8,6 +8,16 @@
# Here is an example script:
# https://github.com/NixOS/nixpkgs/issues/33277#issuecomment-354689755
# To add new config changes to NixOS:
# - Dump current settings
# dconf dump / > dconf-old.ini
# - Change a setting, e.g. with dconf-editir
# - Dump new settings
# dconf dump / > dconf-new.ini
# - Display changes
# diff dconf-old.ini dconf-new.ini
# - Add to `dconf.settings` below.
programs.dconf.enable = true;
home-manager.users.yoda = { osConfig, config, pkgs, ... }: {
@ -76,6 +86,11 @@
sleep-inactive-battery-type = "suspend";
};
"org/gnome/system/location" = {
# Settings > Privacy > Location Services > Allow permitted apps to access location data
enabled = true;
};
"org/gnome/desktop/privacy" = {
# Settings > File History > Enabled
remember-recent-files = true;