Move all the individual stored impermanence folders to specific files
This commit is contained in:
parent
57201099fb
commit
dbd5ea69cd
19 changed files with 178 additions and 160 deletions
24
modules/home/services/impermanence/default.nix
Normal file
24
modules/home/services/impermanence/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ config, impermanence, ... }:
|
||||
{
|
||||
imports = [ impermanence.homeManagerModules.impermanence ];
|
||||
|
||||
home.persistence."/persist${config.home.homeDirectory}" = {
|
||||
directories = [
|
||||
"Keepers"
|
||||
"Projects"
|
||||
"Documents"
|
||||
"Pictures"
|
||||
"Videos"
|
||||
"Games"
|
||||
"VMs"
|
||||
|
||||
".ssh"
|
||||
".gnupg"
|
||||
|
||||
".config/sunshine"
|
||||
".local/share/keyrings"
|
||||
".local/state/wireplumber"
|
||||
];
|
||||
allowOther = false;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue