import default.nix

This commit is contained in:
notohh 2025-02-08 17:46:19 -05:00
parent a69380665e
commit 5b0814a8d7
Signed by: notohh
GPG key ID: BD47506D475EE86D
2 changed files with 7 additions and 2 deletions

View file

@ -6,10 +6,9 @@
imports = [ imports = [
./hosts ./hosts
./overlays ./overlays
./modules
./hosts/deploy.nix ./hosts/deploy.nix
./home/profiles ./home/profiles
./modules/pre-commit.nix
./modules/topology.nix
]; ];
systems = ["x86_64-linux"]; systems = ["x86_64-linux"];
perSystem = { perSystem = {

6
modules/default.nix Normal file
View file

@ -0,0 +1,6 @@
_: {
imports = [
./pre-commit.nix
./topology.nix
];
}