summaryrefslogtreecommitdiff
path: root/hosts/nixos.nix
diff options
context:
space:
mode:
authorpolwex <polwex@sortug.com>2025-01-26 04:59:01 +0700
committerpolwex <polwex@sortug.com>2025-01-26 04:59:01 +0700
commitfb39334bcdac65a1ff1d95e7e4db2e28eabcc2d6 (patch)
treed33193f5bac097f7cf0642c3041744eff09bdda2 /hosts/nixos.nix
parent44857f873bf0de923b9078b593391d4ff6908acb (diff)
m
Diffstat (limited to 'hosts/nixos.nix')
-rw-r--r--hosts/nixos.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/hosts/nixos.nix b/hosts/nixos.nix
index e85a2a9..1b7b55c 100644
--- a/hosts/nixos.nix
+++ b/hosts/nixos.nix
@@ -2,7 +2,9 @@
mkNixosSystem = system: path:
inputs.nixpkgs.lib.nixosSystem {
inherit system;
- specialArgs = {inherit inputs;};
+ specialArgs = {
+ inherit inputs;
+ };
modules = import (./. + "/${path}") inputs;
};
in {