diff --git a/flake.nix b/flake.nix index 6536639..95d7184 100644 --- a/flake.nix +++ b/flake.nix @@ -21,6 +21,7 @@ , ... }: { packages.default = pkgs.callPackage ./default.nix { }; + packages.systemd = pkgs.callPackage ./nix/pkgs/systemd.nix { }; devShells.default = pkgs.mkShellNoCC { buildInputs = with pkgs; [ python3.pkgs.pytest @@ -33,6 +34,7 @@ go just config.packages.treefmt + config.packages.systemd ]; }; diff --git a/shell.nix b/shell.nix deleted file mode 100644 index aa23213..0000000 --- a/shell.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ pkgs ? import { } }: -with pkgs; -mkShellNoCC { - buildInputs = [ - python3.pkgs.pytest - python3.pkgs.mypy - - golangci-lint - vault - systemd - hivemind - go - just - ]; -}