diff --git a/base/system.nix b/base/system.nix index 7a961da..757858c 100644 --- a/base/system.nix +++ b/base/system.nix @@ -7,6 +7,8 @@ { # Enable the modern Nix CLI and flakes for reproducible system rebuilds. nix.settings.experimental-features = [ "nix-command" "flakes" ]; + # Allow non-free packages + nixpkgs.config.allowUnfree = true; # Use the systemd-boot EFI boot loader. boot.loader.systemd-boot.enable = true;