feat: copy config to system
This commit is contained in:
parent
c90c256097
commit
005c7590ec
1 changed files with 5 additions and 2 deletions
|
@ -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 = [
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue