Files
nix-new/system/nixos.nix
2025-06-23 00:47:36 +05:00

12 lines
261 B
Nix

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