about summary refs log tree commit diff
path: root/nixos/doc
diff options
context:
space:
mode:
authorRyan Hendrickson <ryan.hendrickson@alum.mit.edu>2023-04-09 02:28:16 -0400
committerRyan Hendrickson <ryan.hendrickson@alum.mit.edu>2023-04-09 02:28:16 -0400
commit43e6f67f753626765a5b0318fcc99c0a7a317724 (patch)
tree9b735708506e1e664bf0e6f1cbfefdf42b28e725 /nixos/doc
parentd7c5b735a09fabc7a93a669ed19d26760b3f977a (diff)
downloadnixlib-43e6f67f753626765a5b0318fcc99c0a7a317724.tar
nixlib-43e6f67f753626765a5b0318fcc99c0a7a317724.tar.gz
nixlib-43e6f67f753626765a5b0318fcc99c0a7a317724.tar.bz2
nixlib-43e6f67f753626765a5b0318fcc99c0a7a317724.tar.lz
nixlib-43e6f67f753626765a5b0318fcc99c0a7a317724.tar.xz
nixlib-43e6f67f753626765a5b0318fcc99c0a7a317724.tar.zst
nixlib-43e6f67f753626765a5b0318fcc99c0a7a317724.zip
nixos/snapper: support more options
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 c2c9f2d1a251..6abbdd0aea0b 100644
--- a/nixos/doc/manual/release-notes/rl-2305.section.md
+++ b/nixos/doc/manual/release-notes/rl-2305.section.md
@@ -136,6 +136,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.