Files
nix-new/system/nixos.nix

12 lines
261 B
Nix
Raw Normal View History

2025-06-23 00:47:36 +05:00
{ 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";
};
}