feat: copy config to system

This commit is contained in:
Ranomier 2025-05-10 22:39:05 +02:00
parent c90c256097
commit 005c7590ec

View file

@ -3,18 +3,21 @@
pkgs, pkgs,
... ...
}: { }: {
nix.settings.experimental-features = lib.mkDefault ["nix-command" "flakes"]; system.copySystemConfiguration = lib.mkDefault true;
# Disable if you don't want unfree packages # Disable if you don't want unfree packages
nixpkgs.config.allowUnfree = lib.mkDefault true; nixpkgs.config.allowUnfree = lib.mkDefault true;
nix = { 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 # focused on correctness, usability, and growth
# and committed to doing right by its community. # and committed to doing right by its community.
package = lib.mkDefault pkgs.lix; package = lib.mkDefault pkgs.lix;
channel.enable = lib.mkDefault false; channel.enable = lib.mkDefault false;
settings.experimental-features = lib.mkDefault ["nix-command" "flakes"];
}; };
imports = [ imports = [