From 3751997d334e8181bb9736cd10cd0dac95713c6a Mon Sep 17 00:00:00 2001 From: uku Date: Sun, 1 Sep 2024 15:37:35 +0200 Subject: [PATCH] chore: move agenix to devshell --- configs/common.nix | 1 - flake.nix | 7 ++++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/configs/common.nix b/configs/common.nix index f55341c..8a5d687 100644 --- a/configs/common.nix +++ b/configs/common.nix @@ -51,7 +51,6 @@ in { environment = { systemPackages = with pkgs; [ - agenix.packages.${pkgs.system}.default neovim git curl diff --git a/flake.nix b/flake.nix index f8e157a..2c8bb2c 100644 --- a/flake.nix +++ b/flake.nix @@ -5,6 +5,7 @@ self, flake-parts, nixinate, + agenix, ... } @ inputs: flake-parts.lib.mkFlake {inherit inputs;} { @@ -23,7 +24,11 @@ devShells.default = with pkgs; mkShellNoCC { - packages = [just statix]; + packages = [ + just + statix + agenix.packages.${system}.default + ]; }; formatter = pkgs.alejandra;