From 482435f0c3b8d5d64a55803a9ec2f238bea071e8 Mon Sep 17 00:00:00 2001 From: punkfairie Date: Fri, 18 Oct 2024 17:49:35 -0700 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(nix):=20Enable=20flakes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- home/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/home/default.nix b/home/default.nix index ce375dc..a3cd1ac 100644 --- a/home/default.nix +++ b/home/default.nix @@ -3,6 +3,9 @@ home.username = "marley"; home.homeDirectory = "/home/marley"; + # Enable flakes. + nix.settings.experimental-features = [ "nix-command" "flakes" ]; + # This value determines the Home Manager release that your configuration is # compatible with. This helps avoid breakage when a new Home Manager release # introduces backwards incompatible changes.