diff options
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -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 ]; + } ]; }); |