old
 1{
 2  mylib,
 3  myvars,
 4  disko,
 5  ...
 6}:
 7#############################################################
 8#
 9#  Pardofelis - NixOS running on a 2C4G VPS
10#  My main server hosted by Yecaoyun.
11#
12#############################################################
13let
14  hostName = "pardofelis";
15in {
16  imports =
17    (mylib.scanModules ./.)
18    ++ [
19      disko.nixosModules.default
20    ];
21
22  modules.currentHost = hostName;
23
24  # This value determines the NixOS release from which the default
25  # settings for stateful data, like file locations and database versions
26  # on your system were taken. It‘s perfectly fine and recommended to leave
27  # this value at the release version of the first install of this system.
28  # Before changing this value read the documentation for this option
29  # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
30  system.stateVersion = "25.05"; # Did you read the comment?
31}