chore: move agenix to devshell

This commit is contained in:
uku 2024-09-01 15:37:35 +02:00
parent 8df171890d
commit 3751997d33
Signed by: uku
SSH key fingerprint: SHA256:4P0aN6M8ajKukNi6aPOaX0LacanGYtlfjmN+m/sHY/o
2 changed files with 6 additions and 2 deletions

View file

@ -51,7 +51,6 @@ in {
environment = { environment = {
systemPackages = with pkgs; [ systemPackages = with pkgs; [
agenix.packages.${pkgs.system}.default
neovim neovim
git git
curl curl

View file

@ -5,6 +5,7 @@
self, self,
flake-parts, flake-parts,
nixinate, nixinate,
agenix,
... ...
} @ inputs: } @ inputs:
flake-parts.lib.mkFlake {inherit inputs;} { flake-parts.lib.mkFlake {inherit inputs;} {
@ -23,7 +24,11 @@
devShells.default = with pkgs; devShells.default = with pkgs;
mkShellNoCC { mkShellNoCC {
packages = [just statix]; packages = [
just
statix
agenix.packages.${system}.default
];
}; };
formatter = pkgs.alejandra; formatter = pkgs.alejandra;