Add target for generic Linux distros

This commit is contained in:
Bun 2025-05-11 00:06:12 -04:00
parent 2d9dcf079a
commit f8ba0f4514
2 changed files with 5 additions and 1 deletions

View file

@ -79,7 +79,10 @@
default = mkHome stable [ ./modules/home ]; default = mkHome stable [ ./modules/home ];
full = mkHome stable [ full = mkHome stable [
./modules/home ./modules/home
{ home.guifull.enable = true; } {
home.guifull.enable = true;
targets.genericLinux.enable = true;
}
]; ];
}; };
} }

View file

@ -3,6 +3,7 @@
imports = [ impermanence.homeManagerModules.impermanence ]; imports = [ impermanence.homeManagerModules.impermanence ];
home.persistence."/persist${config.home.homeDirectory}" = { home.persistence."/persist${config.home.homeDirectory}" = {
enable = !config.targets.genericLinux.enable;
directories = [ directories = [
"Keepers" "Keepers"
"Projects" "Projects"