about summary refs log tree commit diff
path: root/nixos/doc
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2023-05-15 17:24:25 +0200
committerGitHub <noreply@github.com>2023-05-15 17:24:25 +0200
commit872c89e5a754a04058b4531e54897db5ca734100 (patch)
treea576b5b63570847aa018d85f5452f303262ba584 /nixos/doc
parent15aead1d8c7aaeb1ba7dadd3dc6d96d6d6f97f86 (diff)
parent43e6f67f753626765a5b0318fcc99c0a7a317724 (diff)
downloadnixlib-872c89e5a754a04058b4531e54897db5ca734100.tar
nixlib-872c89e5a754a04058b4531e54897db5ca734100.tar.gz
nixlib-872c89e5a754a04058b4531e54897db5ca734100.tar.bz2
nixlib-872c89e5a754a04058b4531e54897db5ca734100.tar.lz
nixlib-872c89e5a754a04058b4531e54897db5ca734100.tar.xz
nixlib-872c89e5a754a04058b4531e54897db5ca734100.tar.zst
nixlib-872c89e5a754a04058b4531e54897db5ca734100.zip
Merge pull request #221750 from rhendric/rhendric/nixos/snapper
Diffstat (limited to 'nixos/doc')
-rw-r--r--nixos/doc/manual/release-notes/rl-2305.section.md20
1 files changed, 20 insertions, 0 deletions
diff --git a/nixos/doc/manual/release-notes/rl-2305.section.md b/nixos/doc/manual/release-notes/rl-2305.section.md
index c35312097ca4..1e869cf14401 100644
--- a/nixos/doc/manual/release-notes/rl-2305.section.md
+++ b/nixos/doc/manual/release-notes/rl-2305.section.md
@@ -197,6 +197,26 @@ In addition to numerous new and upgraded packages, this release has the followin
 
 - `services.sourcehut.dispatch` and the corresponding package (`sourcehut.dispatchsrht`) have been removed due to [upstream deprecation](https://sourcehut.org/blog/2022-08-01-dispatch-deprecation-plans/).
 
+- The attributes used by `services.snapper.configs.<name>` have changed. Migrate from this:
+
+  ```nix
+  services.snapper.configs.example = {
+    subvolume = "/example";
+    extraConfig = ''
+      ALLOW_USERS="alice"
+    '';
+  };
+  ```
+
+  to this:
+
+  ```nix
+  services.snapper.configs.example = {
+    SUBVOLUME = "/example";
+    ALLOW_USERS = [ "alice" ];
+  };
+  ```
+
 - The [services.snapserver.openFirewall](#opt-services.snapserver.openFirewall) module option default value has been changed from `true` to `false`. You will need to explicitly set this option to `true`, or configure your firewall.
 
 - The [services.tmate-ssh-server.openFirewall](#opt-services.tmate-ssh-server.openFirewall) module option default value has been changed from `true` to `false`. You will need to explicitly set this option to `true`, or configure your firewall.