diff options
Diffstat (limited to 'hosts/nixos.nix')
-rw-r--r-- | hosts/nixos.nix | 4 |
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 { |