big module system implementation

This commit is contained in:
cnst
2024-08-17 18:28:42 +02:00
parent 505afa84d0
commit 7525ab34c1
155 changed files with 2402 additions and 2029 deletions

View File

@@ -9,6 +9,7 @@
./home
./hosts
];
perSystem = {pkgs, ...}: {
devShells = import ./system/nix/shell {inherit pkgs;};
formatter = pkgs.alejandra;
@@ -16,7 +17,7 @@
packages.cleanup-boot = pkgs.buildFHSUserEnv {
name = "cleanup-boot";
targetPkgs = pkgs: [pkgs.bash];
runScript = ./.cleanup-boot.sh;
runScript = ./.scripts/cleanup-boot.sh;
};
};
};
@@ -92,5 +93,9 @@
url = "github:Mic92/sops-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
ags = {
url = "github:Aylur/ags";
inputs.nixpkgs.follows = "nixpkgs";
};
};
}