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;