diff options
author | sefidel <contact@sefidel.net> | 2022-01-25 22:40:31 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2022-01-25 22:40:31 +0900 |
commit | f1b9e4ff65c952d91134f626bc8f94a786fef977 (patch) | |
tree | 7ed6e14b38ba4cddc6b54540751c752e22493863 /lib/mk_system.nix | |
parent | 9400d1c904fadb72f8044209cab8c9b6fe7004bf (diff) | |
download | nixrc-f1b9e4ff65c952d91134f626bc8f94a786fef977.tar.gz nixrc-f1b9e4ff65c952d91134f626bc8f94a786fef977.zip |
lib/mk_*: set default values for system
Diffstat (limited to 'lib/mk_system.nix')
-rw-r--r-- | lib/mk_system.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/mk_system.nix b/lib/mk_system.nix index 8af0aa6..9916a2c 100644 --- a/lib/mk_system.nix +++ b/lib/mk_system.nix @@ -1,6 +1,6 @@ { self, ... } @ args: -{ name, nixpkgs, overlays ? null, extraModules ? null }: +{ name, nixpkgs, system ? "x86_64-linux", overlays ? null, extraModules ? null }: nixpkgs.lib.nixosSystem ( let configFolder = "${self}/nixos"; @@ -8,7 +8,7 @@ nixpkgs.lib.nixosSystem ( hardware = "${configFolder}/${name}/hardware-configuration.nix"; in { - system = "x86_64-linux"; + system = system; modules = [ { |