move stuff to parts dir

This commit is contained in:
uku 2024-01-19 12:24:48 +01:00
parent a7b8dd7141
commit e868b5913f
Signed by: uku
GPG key ID: 7D01D7B105E77166
6 changed files with 10 additions and 5 deletions

2
.envrc
View file

@ -1,2 +1,2 @@
use flake
watch_file dev.nix
watch_file parts/dev.nix

View file

@ -55,9 +55,7 @@
systems = ["x86_64-linux"];
imports = [
./ci.nix
./dev.nix
./deploy.nix
./parts
./systems
];
};

View file

@ -10,7 +10,7 @@
...
}: {
packages = let
overlay = lib.fix (final: (import ./exprs/overlay.nix final pkgs));
overlay = lib.fix (final: (import ../exprs/overlay.nix final pkgs));
# do not include a package if it's not available on the system or if it's broken
isValid = _: v:

7
parts/default.nix Normal file
View file

@ -0,0 +1,7 @@
{
imports = [
./ci.nix
./deploy.nix
./dev.nix
];
}