diff options
Diffstat (limited to 'hosts/default.nix')
| -rw-r--r-- | hosts/default.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/hosts/default.nix b/hosts/default.nix index fe210b6..15a94fa 100644 --- a/hosts/default.nix +++ b/hosts/default.nix @@ -3,6 +3,7 @@ inputs, outputs, self, + kansaiPkgs, ... }: let @@ -11,6 +12,12 @@ in { flake.nixosConfigurations = with lib; { kansai = nixosSystem { + pkgs = + (kansaiPkgs { + nixpkgsAllowUnfree = true; + nixpkgsCudaSupport = true; + })."x86_64-linux"; + specialArgs = { inherit inputs outputs secrets; }; |