11 lines
194 B
Nix
11 lines
194 B
Nix
{ pkgs, ... }:
|
|
{
|
|
# Enable flakes and nix-commnands.
|
|
nix.settings.experimental-features = ["flakes" "nix-command"];
|
|
|
|
# Allow unfree code
|
|
nixpkgs.config = {
|
|
allowUnfree = true;
|
|
};
|
|
}
|