From d3a124324f270b905789d034d1514d4071849217 Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Fri, 4 Aug 2023 12:46:54 +0200 Subject: [PATCH] New config structure for snapper --- machines/morpheus.nix | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/machines/morpheus.nix b/machines/morpheus.nix index d0abea9..2ef1b5a 100644 --- a/machines/morpheus.nix +++ b/machines/morpheus.nix @@ -35,12 +35,10 @@ inputs.nixpkgs.lib.nixosSystem { blueman.enable = true; snapper.configs = { home = { - subvolume = "/home"; - extraConfig = '' - ALLOW_USERS="me" - TIMELINE_CREATE=yes - TIMELINE_CLEANUP=yes - ''; + SUBVOLUME = "/home"; + ALLOW_USERS = [ "me" ]; + TIMELINE_CREATE = true; + TIMELINE_CLEANUP = true; }; }; };