From 41d79acda75af9aa3f2feb54c3fb78d63f74d7b9 Mon Sep 17 00:00:00 2001 From: seth Date: Mon, 27 Feb 2023 21:24:16 -0500 Subject: allowUnsupportedSystem = true --- users/seth/default.nix | 5 ++++- util/host.nix | 5 ++++- util/user.nix | 5 ++++- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/users/seth/default.nix b/users/seth/default.nix index 5f21214..1476323 100644 --- a/users/seth/default.nix +++ b/users/seth/default.nix @@ -31,7 +31,10 @@ home.stateVersion = config.system.stateVersion; - nixpkgs.config.allowUnfree = true; + nixpkgs.config = { + allowUnfree = true; + allowUnsupportedSystem = true; + }; systemd.user.startServices = true; }; 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; -- cgit v1.2.3