add agenix to inputs

This commit is contained in:
Andreas Zweili 2022-03-16 14:30:12 +01:00
parent f2bfd4e7aa
commit edd17411c2

View File

@ -8,6 +8,11 @@
# look here for the hardware options https://github.com/NixOS/nixos-hardware/blob/master/flake.nix#L5
nixos-hardware.url = "github:nixos/nixos-hardware";
agenix = {
url = "github:ryantm/agenix";
inputs.nixpkgs.follows = "nixpkgs";
};
home-manager = {
url = "github:nix-community/home-manager/release-21.11";
inputs.nixpkgs.follows = "nixpkgs";
@ -42,13 +47,6 @@
];
};
arm-pkgs = import nixpkgs {
system = "aarch64-linux";
config = {
allowUnfree = true;
};
};
mkComputer = configurationNix: nixpkgs.lib.nixosSystem {
inherit system pkgs;
specialArgs = { inherit custom inputs; };