From 44f62b7719fff45930379fa7c2e9409a90f7cdfc Mon Sep 17 00:00:00 2001 From: Leonora Tindall Date: Sun, 18 Feb 2024 17:44:13 -0600 Subject: [PATCH] Allow unfree and flakes --- home.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/home.nix b/home.nix index c3b3203..ddb2b3c 100644 --- a/home.nix +++ b/home.nix @@ -53,4 +53,10 @@ in # Because I want Firefox nixpkgs.config.allowUnfree = true; + + # Because I have to use flakes, barf + nix = { + package = pkgs.nix; + settings.experimental-features = [ "nix-command" "flakes" ]; + }; }