nixos

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

default.nix (545B)


      1 {...}: {
      2 	imports = [
      3 		./misc/.
      4 		./program/.
      5 		./service/.
      6 	];
      7 
      8 	# This value determines the Home Manager release that your
      9 	# configuration is compatible with. This helps avoid breakage
     10 	# when a new Home Manager release introduces backwards
     11 	# incompatible changes.
     12 	#
     13 	# You can update Home Manager without changing this value. See
     14 	# the Home Manager release notes for a list of state version
     15 	# changes in each release.
     16 	home.stateVersion = "25.05";
     17 
     18 	# Let Home Manager install and manage itself.
     19 	programs.home-manager.enable = true;
     20 }