From 51f8929ed5006d2b5055e94f7c6a7d459889ae31 Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Tue, 26 Oct 2021 00:12:16 +0200 Subject: [PATCH] Allow unsupported system --- config.nix | 2 +- home.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config.nix b/config.nix index e947658..7e0a949 100644 --- a/config.nix +++ b/config.nix @@ -1,4 +1,4 @@ { allowUnfree = true; -# allowUnsupportedSystem = true; + allowUnsupportedSystem = true; } diff --git a/home.nix b/home.nix index da04741..dbb7757 100644 --- a/home.nix +++ b/home.nix @@ -8,7 +8,7 @@ in nixpkgs.overlays = [ (import ./rice.nix) ]; - imports = [host_config ]; + imports = [ host_config ]; programs.home-manager.enable = true; }