Compare commits

...

2 Commits

Author SHA1 Message Date
Noah Masur
b7317a721b try inheriting configs 2025-04-03 10:34:22 -04:00
Noah Masur
3684ce4b39 exclude keybase from zoxide 2025-04-03 10:34:11 -04:00
2 changed files with 6 additions and 3 deletions

View File

@ -216,13 +216,12 @@
system: system:
# Get the configurations that we normally use # Get the configurations that we normally use
{ {
nixosConfigurations = nixosConfigurations.${system}; inherit nixosConfigurations darwinConfigurations;
darwinConfigurations = darwinConfigurations.${system};
homeConfigurations = homeConfigurations.${system}; homeConfigurations = homeConfigurations.${system};
generators = generators.${system}; generators = generators.${system};
} }
// //
# Get the custom packages that I have placed under the nmasur namespace # Share the custom packages that I have placed under the nmasur namespace
lib.pkgsBySystem.${system}.nmasur lib.pkgsBySystem.${system}.nmasur
); );

View File

@ -35,5 +35,9 @@ in
".rgignore".text = ignorePatterns; ".rgignore".text = ignorePatterns;
".fdignore".text = ignorePatterns; ".fdignore".text = ignorePatterns;
}; };
# Ignore in zoxide
home.sessionVariables = {
_ZO_EXCLUDE_DIRS = "$HOME/keybase/*";
};
}; };
} }