summaryrefslogtreecommitdiff
path: root/hosts/akashi/default.nix
blob: caa15439b4418e32a33e129beb34601da6b1203c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  self,
  ...
}:
{
  imports = [
    ./hardware-configuration.nix
    "${self}/modules/core"
    "${self}/modules/laptop"
    "${self}/modules/options"
    "${self}/modules/pc"
  ];

  config = {
    modules.nix.extend = false;
    system.stateVersion = "24.05";
    networking.hostName = "akashi";
    services.openssh.settings.PermitRootLogin = "yes";
  };
}