nixos/modules/nix-settings.nix

9 lines
238 B
Nix
Raw Normal View History

2024-03-26 20:46:24 -08:00
{ 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;
}