From e6a1fa4b66118c023bf9f1c16f239dcb34c95db4 Mon Sep 17 00:00:00 2001 From: Frost-Phoenix <67cyril6767@gmail.com> Date: Fri, 15 Dec 2023 23:07:39 +0100 Subject: [PATCH] fix --- modules/core/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/core/default.nix b/modules/core/default.nix index 3e159e0..cde622d 100644 --- a/modules/core/default.nix +++ b/modules/core/default.nix @@ -1,4 +1,4 @@ -{ inputs, nixpkgs, self, ...}: +{ inputs, nixpkgs, self, username, ...}: let system = "x86_64-linux"; pkgs = import nixpkgs { @@ -9,7 +9,7 @@ let in { nixos = nixpkgs.lib.nixosSystem { - specialArgs = { inherit self inputs; }; + specialArgs = { inherit self inputs username; }; modules = [ (import ./bootloader.nix) ] ++ [ (import ./hardware.nix) ]