summaryrefslogtreecommitdiff
path: root/hosts/fina/default.nix
blob: c50c5dde4f1759161c9dddd9b92403dd123968d8 (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
{
  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 = {
      enable = true;
      settings.PermitRootLogin = "yes";
    };
  };
}