aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortdback <tyler@tdback.net>2025-01-17 19:54:27 -0500
committertdback <tyler@tdback.net>2025-01-17 19:54:27 -0500
commit60e0784fcaa467854dafe9b9a7d3c5e502d9cb54 (patch)
treef5b66c586901de7a62fa7ef185fbef4f42ca0aa8
parent3c5451d104e90cc762be226552a7d8fa0da9f6ef (diff)
chore: use inherit
-rw-r--r--modules/default.nix2
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"