summaryrefslogtreecommitdiff
path: root/hosts/kansai/configuration.nix
blob: dc36fce9ee4b29cc24224f67ab83bbbaa164fd0c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ self, ... }:
{
  imports = [
    ./hardware-configuration.nix
    "${self}/modules/core"
    "${self}/modules/desktop"
    "${self}/modules/options"
    "${self}/modules/pc"
  ];

  config = {
    modules = {
      primaryUser = "ebisu";
      mosh.enable = true;
      nix.extendedSupport = true;

      mounts.usb = {
        enable = true;
        name = "kioku";
        device = "/dev/disk/by-uuid/67BF-FE53";
      };
    };

    networking.hostName = "kansai";
    system.stateVersion = "24.05";
  };
}