Files
nixos-flake/modules/core/nix-settings.nix
T
2026-01-21 17:55:37 +01:00

9 lines
195 B
Nix

{ pkgs, ... }:
{
system.stateVersion = "25.11";
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nixpkgs.config.allowUnfree = true;
nixpkgs.config.i686Support = true;
}