From 89a09e3f64b6a5ff1787adb9de8f470a54ef6317 Mon Sep 17 00:00:00 2001 From: Deepak Mallubhotla Date: Thu, 24 Mar 2022 11:20:17 -0500 Subject: [PATCH] fix: broke down and nix experimental enabled for system --- configuration.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configuration.nix b/configuration.nix index 21aa5df..0cc6ef6 100644 --- a/configuration.nix +++ b/configuration.nix @@ -10,6 +10,10 @@ ./hardware-configuration.nix ]; + nix = { + package = pkgs.nixFlakes; + extraOptions = "experimental-features = nix-command flakes"; + }; # Use the systemd-boot EFI boot loader. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true;