diff options
Diffstat (limited to 'options.nix')
| -rw-r--r-- | options.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/options.nix b/options.nix index 8be79b5a..1d3d6a16 100644 --- a/options.nix +++ b/options.nix @@ -12,13 +12,13 @@ in package = mkOption { type = types.package; - default = packages.${pkgs.system}.hakurei; + default = packages.${pkgs.stdenv.hostPlatform.system}.hakurei; description = "The hakurei package to use."; }; hsuPackage = mkOption { type = types.package; - default = packages.${pkgs.system}.hsu; + default = packages.${pkgs.stdenv.hostPlatform.system}.hsu; description = "The hsu package to use."; }; |
