From da4ce64a16760ec9ed6c5769711cd2d0e4ea47e3 Mon Sep 17 00:00:00 2001 From: alex Date: Sun, 4 Feb 2024 14:19:21 -0500 Subject: [PATCH] atauno: enable flakes --- atauno/configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/atauno/configuration.nix b/atauno/configuration.nix index 0d9cd75..6c897b6 100644 --- a/atauno/configuration.nix +++ b/atauno/configuration.nix @@ -10,6 +10,9 @@ ./hardware-configuration.nix ]; + nix.settings.experimental-features = [ "nix-command" "flakes" ]; + nixpkgs.config.allowUnfree = true; + # Use the systemd-boot EFI boot loader. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true;