nixos/modules/nix-settings.nix

9 lines
293 B
Nix
Raw Normal View History

2024-04-07 15:35:51 -08:00
{ config, lib, pkgs, inputs, nur, ... }:
2024-03-26 20:46:24 -08:00
{
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 ];
2024-03-26 20:46:24 -08:00
}