This commit is contained in:
2025-12-31 14:28:39 +01:00
parent 846dcdc0e7
commit f39c1b0f57
3 changed files with 12 additions and 2 deletions

View File

@@ -37,7 +37,7 @@
};
persistence = {
"/persist".direcotoryies = [
"/persist".directories = [
"Documents"
"Downloads"
"Pictures"

View File

@@ -5,7 +5,7 @@
}: {
imports = [
inputs.home-manager.nixosModules.home-manager
./fish.nix
./sops.nix
] ++ (builtins.attrValues outputs.nixosModules);

View File

@@ -0,0 +1,10 @@
{
programs.fish = {
enable = true;
vendor = {
completions.enable = true;
config.enable = true;
functions.enable = true;
};
};
}