nixos

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

default.nix (1165B)


      1 {...}: {
      2 	imports = [
      3 		./service/.
      4 		./system/.
      5 		./hardware-configuration.nix
      6 	];
      7 
      8 	# This option defines the first version of NixOS you have installed on this particular machine,
      9 	# and is used to maintain compatibility with application data (e.g. databases) created on older NixOS versions.
     10 	#
     11 	# Most users should NEVER change this value after the initial install, for any reason,
     12 	# even if you've upgraded your system to a new NixOS release.
     13 	#
     14 	# This value does NOT affect the Nixpkgs version your packages and OS are pulled from,
     15 	# so changing it will NOT upgrade your system - see https://nixos.org/manual/nixos/stable/#sec-upgrading for how
     16 	# to actually do that.
     17 	#
     18 	# This value being lower than the current NixOS release does NOT mean your system is
     19 	# out of date, out of support, or vulnerable.
     20 	#
     21 	# Do NOT change this value unless you have manually inspected all the changes it would make to your configuration,
     22 	# and migrated your data accordingly.
     23 	#
     24 	# For more information, see `man configuration.nix` or https://nixos.org/manual/nixos/stable/options#opt-system.stateVersion .
     25 	system.stateVersion = "25.05"; # Did you read the comment?
     26 }