9 lines
280 B
Nix
9 lines
280 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
nix.settings.extra-experimental-features = [ "nix-command" "flakes" ];
|
|
# Allow unfree packages
|
|
nixpkgs.config.allowUnfree = true;
|
|
nixpkgs.overlays = [ inputs.nur.overlay ];
|
|
}
|