diff options
| author | Linnea Gräf <nea@nea.moe> | 2025-04-23 16:02:42 +0200 |
|---|---|---|
| committer | Linnea Gräf <nea@nea.moe> | 2025-04-23 16:02:42 +0200 |
| commit | f83a3249c6d8a50e77818bd455e3946880ca5883 (patch) | |
| tree | 8fb935d293a2b4304c6aa65a4f536e83356069e8 | |
| parent | 1fc42512c6930e5f3d78b5a6a69beec5ca782ef7 (diff) | |
| download | nix-infra-f83a3249c6d8a50e77818bd455e3946880ca5883.tar.gz nix-infra-f83a3249c6d8a50e77818bd455e3946880ca5883.tar.bz2 nix-infra-f83a3249c6d8a50e77818bd455e3946880ca5883.zip | |
snapshot: Mi 23. Apr 16:02:42 CEST 2025
| -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. |
