summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index ec6258d..cb746da 100644
--- a/flake.nix
+++ b/flake.nix
@@ -6,6 +6,11 @@
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
determinate.url = "https://flakehub.com/f/DeterminateSystems/determinate/*";
+ headplane = {
+ url = "github:tale/headplane";
+ inputs.nixpkgs.follows = "nixpkgs";
+ };
+
sops-nix = {
url = "github:Mic92/sops-nix";
inputs.nixpkgs.follows = "nixpkgs";
@@ -31,6 +36,7 @@
nixos-hardware,
alina,
determinate,
+ headplane,
}:
let
lib = nixpkgs.lib;
@@ -69,6 +75,12 @@
./os/${host}/configuration.nix
sops-nix.nixosModules.sops
home-manager.nixosModules.home-manager
+
+ headplane.nixosModules.headplane
+ {
+ # provides `pkgs.headplane`
+ nixpkgs.overlays = [ headplane.overlays.default ];
+ }
];
});