summaryrefslogtreecommitdiffstats
path: root/lass/1systems/skynet/config.nix
blob: b6c08f7977052649d917d9be9bd0253ff360054d (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
37
38
39
40
41
42
43
44
45
46
47
{ config, pkgs, ... }:
with import <stockholm/lib>;
{
  imports = [
    <stockholm/lass>

    <stockholm/lass/2configs/retiolum.nix>
    #<stockholm/lass/2configs/exim-retiolum.nix>
    <stockholm/lass/2configs/fetchWallpaper.nix>
    {
      # discordius config
      services.xserver.enable = true;
      users.users.discordius = {
        uid = genid "discordius";
        home = "/home/discordius";
        group = "users";
        createHome = true;
        extraGroups = [
          "audio"
          "networkmanager"
        ];
        useDefaultShell = true;
      };
      networking.networkmanager.enable = true;
      networking.wireless.enable = mkForce false;
      hardware.pulseaudio = {
        enable = true;
        systemWide = true;
      };
      environment.systemPackages = with pkgs; [
        pavucontrol
        firefox
        hexchat
        networkmanagerapplet
      ];
      services.xserver.desktopManager.gnome3 = {
        enable = true;
      };
    }
  ];

  krebs.build.host = config.krebs.hosts.skynet;

  services.logind.extraConfig = ''
    HandleLidSwitch=ignore
  '';
}