summaryrefslogtreecommitdiff
path: root/sys/seat/default.nix
blob: 17ddfe824aa6e056882b8293fed99da96320b121 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{ config, lib, pkgs, ... }:
with lib; let
  cfg = config.local.seat;

  users = filterAttrs;
in
{
  options.local.seat = {
    enable = mkEnableOption "user seat";

    installUsers = mkOption {
      type = types.enum [ "none" "single" "all" ];
    };

    graphical = mkOption {
      type = types.bool;
      default = false;
    };

    wayland = mkOption {
      type = types.bool;
      default = true;
    };

    videoDrivers = mkOption {
      type = with types; listOf str;
    };
  };

  config = mkIf cfg.enable
    (mkMerge [
      (
        let
          users =
            if cfg.installUsers == "all"
            then config.local.users
            else if cfg.installUsers == "single"
            then filterAttrs (_: user: user.sysadmin) config.local.users
            else { };
        in
        {
          hardware = {
            acpilight.enable = true;
            pulseaudio.enable = false;
          };

          security.rtkit.enable = true;

          services.pipewire = {
            enable = true;

            alsa = {
              enable = true;
              support32Bit = true;
            };

            jack.enable = true;
            pulse.enable = true;
          };

          # Remove sound.enable or set it to false if you had it set previously, as sound.enable is only meant for ALSA-based configurations
          sound.enable = false;

          users = {
            groups = mapAttrs (_: user: { inherit (user) gid; }) users // {
              adbusers.gid = 1008;
            };

            users = mapAttrs
              (username: user: {
                isNormalUser = true;

                inherit (user) uid;
                description = user.gecos;

                group = username;
                extraGroups = [ "users" ] ++ user.groups;

                shell = if user.allowLogin then pkgs.zsh else null;
              })
              users;
          };
        }
      )

      (mkIf cfg.graphical {
        environment = {
          sessionVariables.NIXOS_OZONE_WL = "1";

          systemPackages = with pkgs; [
            qt5.qtwayland
            qt6.qtwayland
          ];
        };

        hardware.opengl.enable = true;

        programs.dconf.enable = true;

        security.pam.services.swaylock = { };

        services = {
          libinput.enable = true;

          udev.packages = with pkgs; [
            pkgs.android-udev-rules
          ];

          xserver = mkIf (!cfg.wayland) {
            enable = true;
            videoDrivers = cfg.videoDrivers ++ [ "modesetting" "fbdev" ];
            displayManager.startx.enable = true;
          };
        };

        users.groups.adbusers.gid = 1008;
      })
    ]);
}