gocryptfs: place package in system.fsPackages instead of environment.systemPackages (it propagates anyway)

This commit is contained in:
colin 2023-01-03 12:00:49 +00:00
parent fbc39d0584
commit 618e9bd2fa
2 changed files with 2 additions and 2 deletions

View File

@ -85,5 +85,5 @@ lib.mkIf config.sane.impermanence.enable
};
# TODO: could add this *specifically* to the .mount file for the encrypted fs?
environment.systemPackages = [ pkgs.gocryptfs ]; # fuse needs to find gocryptfs
system.fsPackages = [ pkgs.gocryptfs ]; # fuse needs to find gocryptfs
}

View File

@ -56,6 +56,6 @@ in lib.mkIf config.sane.impermanence.enable
};
# TODO: could add this *specifically* to the .mount file for the encrypted fs?
environment.systemPackages = [ pkgs.gocryptfs ]; # fuse needs to find gocryptfs
system.fsPackages = [ pkgs.gocryptfs ]; # fuse needs to find gocryptfs
}