aboutsummaryrefslogtreecommitdiff
path: root/hosts/limbo/default.nix
blob: b7be92e615c282bc761adbca2b0d1461166185b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ config, ... }:
{
  imports = [
    ../../common/pipewire.nix
    ../../common/region/na-east.nix
    ./disks.nix
  ];

  greeters.tuigreet = {
    enable = true;
    time = true;
  };

  networking.networkmanager = {
    enable = true;
    wifi.macAddress = "random";
  };

  services.automatic-timezoned.enable = true;
  system.stateVersion = "26.05";
}