summaryrefslogtreecommitdiff
path: root/hosts/kansai/configuration.nix
blob: 31809bd043bfb3d1c0b11e620b5a1eb09b616b1b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ self, ... }:
{
  imports = [
    ./hardware-configuration.nix
    "${self}/modules/core"
    "${self}/modules/desktop"
    "${self}/modules/options"
    "${self}/modules/pc"
  ];

  config = {
    modules.primaryUser = "ebisu";
    networking.hostName = "kansai";
    system.stateVersion = "24.05";
  };
}