From 005c7590ec7ba8a65572d81284da055efd77f36d Mon Sep 17 00:00:00 2001 From: Ranomier <> Date: Sat, 10 May 2025 22:39:05 +0200 Subject: [PATCH] feat: copy config to system --- system_profiles/defaults.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/system_profiles/defaults.nix b/system_profiles/defaults.nix index 8fb3c00..edc42a2 100644 --- a/system_profiles/defaults.nix +++ b/system_profiles/defaults.nix @@ -3,18 +3,21 @@ pkgs, ... }: { - nix.settings.experimental-features = lib.mkDefault ["nix-command" "flakes"]; + system.copySystemConfiguration = lib.mkDefault true; # Disable if you don't want unfree packages nixpkgs.config.allowUnfree = lib.mkDefault true; nix = { - # https://lix.systems/ Lix is a modern, delicious implementation of the Nix package manager, + # https://lix.systems/ + # Lix is a modern, delicious implementation of the Nix package manager, # focused on correctness, usability, and growth – # and committed to doing right by its community. package = lib.mkDefault pkgs.lix; channel.enable = lib.mkDefault false; + + settings.experimental-features = lib.mkDefault ["nix-command" "flakes"]; }; imports = [