Files
2026-02-12 14:17:28 +01:00

8 lines
199 B
Nix

# Misc. nix settings.
{ lib, ... }:
{
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
nixpkgs.config.allowUnfree = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
}