diff --git a/modules/gnome-config.nix b/modules/gnome-config.nix index ea47e9a..9b12d70 100644 --- a/modules/gnome-config.nix +++ b/modules/gnome-config.nix @@ -10,16 +10,16 @@ # To add new config changes to NixOS: # - Dump current settings - # dconf dump / > dconf/old.ini + # dconf dump / > dconf/$(date +%s).ini # - Change a setting, e.g. with dconf-editir # - Dump new settings - # dconf dump / > dconf/new.ini + # dconf dump / > dconf/$(date +%s).ini # - Display changes - # diff --context=5 dconf/old.ini dconf/new.ini + # diff --context=5 dconf/OLD-DATE.ini dconf/NEW-DATE.ini # - Add to `dconf.settings` below. # Restore settings: - # dconf load / < dconf/old.ini + # dconf load / < dconf/OLD-DATE.ini programs.dconf.enable = true;