nichts/flake.nix
2024-04-10 17:39:26 +02:00

27 lines
671 B
Nix

{
description = "lololo";
outputs = inputs @ { self, nixpkgs, ... }:
{
inherit (nixpkgs) lib;
nixosConfigurations = import ./hosts { inherit inputs; };
};
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
nur.url = "github:nix-community/NUR";
agenix.url = "github:ryantm/agenix";
schizofox = {
url = "github:schizofox/schizofox";
inputs = {
nixpkgs.follows = "nixpkgs";
};
};
};
}