diff options
| author | seth <[email protected]> | 2023-02-27 21:24:16 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-02-27 21:24:16 -0500 |
| commit | 41d79acda75af9aa3f2feb54c3fb78d63f74d7b9 (patch) | |
| tree | 202d88be93b3cc93623234167a0b88bc9b6b7b69 /util | |
| parent | 972d0a179b1ac7969878c7b3043cb8740e0a62fd (diff) | |
allowUnsupportedSystem = true
Diffstat (limited to 'util')
| -rw-r--r-- | util/host.nix | 5 | ||||
| -rw-r--r-- | util/user.nix | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/util/host.nix b/util/host.nix index 786e460..da2c692 100644 --- a/util/host.nix +++ b/util/host.nix @@ -19,7 +19,10 @@ system.stateVersion = version; networking.hostName = mkDefault name; # enable non-free packages - nixpkgs.config.allowUnfree = true; + nixpkgs.config = { + allowUnfree = true; + allowUnsupportedSystem = true; + }; # Enable nix flakes nix = { diff --git a/util/user.nix b/util/user.nix index d28ae2e..366112f 100644 --- a/util/user.nix +++ b/util/user.nix @@ -14,7 +14,10 @@ [ ../users/${username}/home.nix { - nixpkgs.config.allowUnfree = true; + nixpkgs.config = { + allowUnfree = true; + allowUnsupportedSystem = true; + }; nix = { package = channel.legacyPackages.${system}.nixFlakes; |
