summaryrefslogtreecommitdiff
path: root/hosts/akashi/configuration.nix
blob: 48f1659543b2ac813cfd5d97e9cc7ea259274962 (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
{
  self,
  ...
}:
{
  imports = [
    ./hardware-configuration.nix
    "${self}/modules/core"
    "${self}/modules/laptop"
    "${self}/modules/options"
    "${self}/modules/pc"
  ];

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

    system.stateVersion = "24.05";
    networking.hostName = "akashi";
    services.openssh.settings.PermitRootLogin = "yes";
  };
}