1
0

Initial shared NixOS modules

This commit is contained in:
2025-06-23 17:44:56 -07:00
commit 1061e07deb
11 changed files with 464 additions and 0 deletions

11
home/default/direnv.nix Normal file
View File

@@ -0,0 +1,11 @@
{ ... }:
{
programs.direnv = {
enable = true;
enableBashIntegration = true;
nix-direnv = {
enable = true;
};
};
}