diff --git a/modules/gnome-config.nix b/modules/gnome-config.nix index 0508ed0..ad27382 100644 --- a/modules/gnome-config.nix +++ b/modules/gnome-config.nix @@ -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;