From f3c31e4ad7fab36e151f3a2e207fafb1eda1a787 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Wed, 28 Aug 2024 20:36:04 -0700 Subject: hi --- hosts/kansai/configuration.nix | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 hosts/kansai/configuration.nix (limited to 'hosts/kansai/configuration.nix') diff --git a/hosts/kansai/configuration.nix b/hosts/kansai/configuration.nix new file mode 100644 index 0000000..023a45f --- /dev/null +++ b/hosts/kansai/configuration.nix @@ -0,0 +1,31 @@ +{ + config, + lib, + pkgs, + ... +}: +{ + imports = [ + ./hardware-configuration.nix + ../../modules + ]; + + # This option defines the first version of NixOS you have installed on this particular machine, + # and is used to maintain compatibility with application data (e.g. databases) created on older NixOS versions. + # + # Most users should NEVER change this value after the initial install, for any reason, + # even if you've upgraded your system to a new NixOS release. + # + # This value does NOT affect the Nixpkgs version your packages and OS are pulled from, + # so changing it will NOT upgrade your system - see https://nixos.org/manual/nixos/stable/#sec-upgrading for how + # to actually do that. + # + # This value being lower than the current NixOS release does NOT mean your system is + # out of date, out of support, or vulnerable. + # + # Do NOT change this value unless you have manually inspected all the changes it would make to your configuration, + # and migrated your data accordingly. + # + # For more information, see `man configuration.nix` or https://nixos.org/manual/nixos/stable/options#opt-system.stateVersion . + system.stateVersion = "24.05"; # Did you read the comment? +} -- cgit v1.2.3