nichts/flake.nix

28 lines
671 B
Nix
Raw Normal View History

2024-04-09 23:11:33 +02:00
{
2024-04-10 17:39:26 +02:00
description = "lololo";
outputs = inputs @ { self, nixpkgs, ... }:
{
inherit (nixpkgs) lib;
nixosConfigurations = import ./hosts { inherit inputs; };
};
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
2024-04-09 23:11:33 +02:00
2024-04-10 17:39:26 +02:00
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
2024-04-10 11:35:09 +02:00
};
2024-04-09 23:11:33 +02:00
2024-04-10 17:39:26 +02:00
nur.url = "github:nix-community/NUR";
2024-04-09 23:11:33 +02:00
2024-04-10 17:39:26 +02:00
agenix.url = "github:ryantm/agenix";
2024-04-09 23:11:33 +02:00
2024-04-10 17:39:26 +02:00
schizofox = {
url = "github:schizofox/schizofox";
inputs = {
nixpkgs.follows = "nixpkgs";
};
};
};
2024-04-09 23:11:33 +02:00
}