13 lines
146 B
Nix
13 lines
146 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
|
||
|
nix.settings = {
|
||
|
experimental-features = [ "nix-command" "flakes" ];
|
||
|
};
|
||
|
|
||
|
nixpkgs.config = {
|
||
|
allowUnfree = true;
|
||
|
};
|
||
|
|
||
|
}
|