From 3a9c7507cfdbf5f2e5afa565f1cb6918c50d8265 Mon Sep 17 00:00:00 2001 From: Lander Van den Bulcke Date: Tue, 27 Aug 2024 20:49:31 +0200 Subject: [PATCH] feat: enable flakes Signed-off-by: Lander Van den Bulcke --- nixos/configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index ba40a88..01777fc 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -102,8 +102,11 @@ environment.systemPackages = with pkgs; [ vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. wget + git ]; + nix.settings.experimental-features = [ "nix-command" "flakes" ]; + # Some programs need SUID wrappers, can be configured further or are # started in user sessions. # programs.mtr.enable = true;