feat: agenix

This commit is contained in:
2024-08-15 23:39:57 +08:00
parent c4b2796c75
commit f49c8a5a7a
2 changed files with 8 additions and 7 deletions

View File

@@ -18,7 +18,7 @@
};
};
outputs = { flake-utils,nixpkgs, nixos-generators, disko, ... }: {
outputs = { flake-utils,nixpkgs, nixos-generators, disko, agenix, ... }: {
packages.x86_64-linux = {
create-vm = let
pkgs = import nixpkgs { system = "x86_64-linux"; };
@@ -49,9 +49,10 @@
{
devShells = {
default = pkgs.mkShell {
buildInputs = with pkgs; [
colmena
shellcheck
buildInputs = [
pkgs.colmena
pkgs.shellcheck
agenix.packages.${system}.default
];
};
};