aboutsummaryrefslogtreecommitdiff
path: root/hosts/limbo/default.nix
blob: b827344669c6d4b1f90dcfaefac4890ca707f9ca (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
26
27
28
29
30
31
32
33
34
{ config, ... }:
{
  imports = [
    ../../common/core.nix
    ../../common/greetd.nix
    ../../common/niri.nix
    ../../common/pipewire.nix
    ../../common/region/na-east.nix
    ./disks.nix
  ];

  home-manager = {
    useGlobalPkgs = true;
    users.rosa = {
      imports = [
        ../../user
        ../../user/wm
      ];

      home = {
        homeDirectory = "/home/rosa";
        stateVersion = "26.05";
        username = "rosa";
      };
    };
  };

  networking = {
    hostName = "limbo";
    networkmanager.enable = true;
  };

  system.stateVersion = "26.05";
}