intial setup of durian

This commit is contained in:
root 2022-08-16 14:20:36 +02:00
parent 048bd78eeb
commit bea16d0652
5 changed files with 229 additions and 18 deletions

View file

@ -1,6 +1,6 @@
{
inputs = {
nixpkgs.url = github:NixOS/nixpkgs/nixos-21.11;
nixpkgs.url = github:NixOS/nixpkgs/nixos-22.05;
sops-nix.url = github:Mic92/sops-nix;
sops-nix.inputs.nixpkgs.follows = "nixpkgs";
@ -51,6 +51,13 @@
}
];
};
durian = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./hosts/durian/configuration.nix
./modules/base.nix
];
};
};
};
}