diff options
author | tdback <tyler@tdback.net> | 2025-01-17 19:54:27 -0500 |
---|---|---|
committer | tdback <tyler@tdback.net> | 2025-01-17 19:54:27 -0500 |
commit | 60e0784fcaa467854dafe9b9a7d3c5e502d9cb54 (patch) | |
tree | f5b66c586901de7a62fa7ef185fbef4f42ca0aa8 /modules/default.nix | |
parent | 3c5451d104e90cc762be226552a7d8fa0da9f6ef (diff) |
chore: use inherit
Diffstat (limited to 'modules/default.nix')
-rw-r--r-- | modules/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/default.nix b/modules/default.nix index 21e86fc..49f08c5 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -8,7 +8,7 @@ in { mkSystem = hostname: system: nixpkgsVersion: modules: { ${hostname} = nixpkgsVersion.lib.nixosSystem { - system = system; + inherit system; modules = (mkModules modules) ++ [ "${inputs.self}/hosts/${hostname}" "${inputs.self}/modules/users" |