nixdots/flake.nix

27 lines
668 B
Nix
Raw Normal View History

2024-02-21 19:50:17 +00:00
{
2024-02-24 20:56:31 +00:00
description = "ItsDrike's NixOS configuration";
2024-02-21 19:50:17 +00:00
2024-02-24 20:56:31 +00:00
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
2024-04-07 16:28:15 +00:00
2024-03-01 13:42:26 +00:00
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-04-07 16:28:15 +00:00
# doesn't offer much above properly used symlinks but it is convenient
impermanence.url = "github:nix-community/impermanence";
2024-04-12 16:25:26 +00:00
# secure-boot support
lanzaboote = {
url = "github:nix-community/lanzaboote/v0.3.0";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-02-24 20:56:31 +00:00
};
2024-02-21 19:50:17 +00:00
2024-02-28 22:40:50 +00:00
outputs = {self, nixpkgs, ...} @ inputs: let
in {
nixosConfigurations = import ./hosts {inherit nixpkgs inputs self;};
};
2024-02-21 19:50:17 +00:00
}