summaryrefslogtreecommitdiff
path: root/hosts/fina/default.nix
blob: 569047b3261ee7999b3ac7a76f9edc13fefab446 (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 = "fina";
    services.openssh.settings.PermitRootLogin = "yes";
  };
}