From b7992d96a24656b003db96ffbd041cdb50d848c4 Mon Sep 17 00:00:00 2001 From: Daniel Langbein Date: Sun, 22 Sep 2024 14:00:52 +0200 Subject: [PATCH] docs --- modules/gnome-config.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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;