aboutsummaryrefslogtreecommitdiff
path: root/hosts/ganymede/config.nix
blob: 62abd56438e0253f585b14bcc97536fe6a7a95df (plain)
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
35
36
{
  collinux = {
    user = {
      name = "collin";
      password = "$y$j9T$08yFysn8jr9K4Wk.hYXbG0$NzY9vIbNknJViA..Jw.vF8wmQtBgEZZU.cdLQOmDvU2";
    };

    terminal = {
      programs = {
        git = {
          enable = true;
          userName = "Collin Williams";
          userEmail = "96917990+bluedragon1221@users.noreply.github.com";
        };
      };
    };

    boot.systemd-boot.enable = true;

    services = {
      networking = {
        enable = true;
        networkmanager.enable = true;
      };

      audio = {
        enable = true;
        pulse.enable = true;
      };

      selfhost = {
        navidrome.enable = true;
      };
    };
  };
}