mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-13 03:37:18 +00:00
17 lines
364 B
Nix
17 lines
364 B
Nix
{
|
|
home.file = {
|
|
".config/nix/nix.conf".text = ''
|
|
allow-dirty = true
|
|
experimental-features = flakes nix-command repl-flake
|
|
builders-use-substitutes = true
|
|
'';
|
|
".config/nixpkgs/config.nix".text = ''
|
|
# -*-nix-*-
|
|
{
|
|
nixpkgs.config.allowUnfreePredicate = (_: true);
|
|
allowUnfree = true;
|
|
}
|
|
|
|
'';
|
|
};
|
|
}
|