old
1{
2 nixos-hardware,
3 myvars,
4 ...
5}:
6#############################################################
7#
8# Kevin - NixOS running on ThinkBook 16P G5 IRX
9# My main computer, with I7-14650HX + RTX4060 Laptop GPU + 48GB memory, for daily use.
10#
11#############################################################
12let
13 hostName = "kevin";
14in {
15 imports = [
16 nixos-hardware.nixosModules.common-cpu-intel
17 nixos-hardware.nixosModules.common-hidpi
18 nixos-hardware.nixosModules.common-pc-laptop
19 nixos-hardware.nixosModules.common-pc-laptop-ssd
20 ./nvidia.nix
21 ./hardware-configuration.nix
22 ./miscs.nix
23 ./boot.nix
24 ];
25
26 modules.currentHost = hostName;
27
28 # This value determines the NixOS release from which the default
29 # settings for stateful data, like file locations and database versions
30 # on your system were taken. It‘s perfectly fine and recommended to leave
31 # this value at the release version of the first install of this system.
32 # Before changing this value read the documentation for this option
33 # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
34 system.stateVersion = "25.05"; # Did you read the comment?
35}