From 96baf631d191903436b94d890ee14c0977aa07e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Tue, 17 Jan 2023 10:37:11 +0100 Subject: [PATCH] also add patched systemd to devshell --- flake.nix | 2 ++ shell.nix | 15 --------------- 2 files changed, 2 insertions(+), 15 deletions(-) delete mode 100644 shell.nix 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 - ]; -}