diff options
| -rw-r--r-- | flake.nix | 1 | ||||
| -rw-r--r-- | srv/hadante/configuration.nix | 5 |
2 files changed, 4 insertions, 2 deletions
@@ -52,6 +52,7 @@ nixosConfigurations = { hadante = nixpkgs.lib.nixosSystem rec { system = "x86_64-linux"; + specialArgs = { inherit inputs; }; modules = [ (inputs: { nixpkgs.overlays = [ diff --git a/srv/hadante/configuration.nix b/srv/hadante/configuration.nix index 64b0a80..e65d09f 100644 --- a/srv/hadante/configuration.nix +++ b/srv/hadante/configuration.nix @@ -2,10 +2,11 @@ # your system. Help is available in the configuration.nix(5) man page # and in the NixOS manual (accessible by running ‘nixos-help’). -inputs@{ +{ config, pkgs, customss, + inputs, ... }: @@ -13,7 +14,7 @@ inputs@{ imports = [ # Include the results of the hardware scan. ./hardware-configuration.nix - # inputs.home-manager.nixosModules.home-manager + inputs.home-manager.nixosModules.home-manager ]; # Bootloader. |
