summaryrefslogtreecommitdiff
path: root/sys/seat/default.nix
blob: 3dd2b15def263df38565f75470403f2607dbb365 (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
120
121
122
123
124
125
126
127
128
{ config, lib, pkgs, ... }:
with lib; let
  cfg = config.local.seat;

  users = filterAttrs (_: user: user.install) config.local.users;
in
{
  options.local.seat = {
    enable = mkEnableOption "user seat";

    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 [
      ({
        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;
          wireplumber.enable = true;
        };

        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.graphics.enable = true;

        programs = {
          dconf.enable = true;

          gtklock = {
            enable = true;

            config = { };
            modules = [ ];
          };
        };

        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 = mkDefault true;
          };
        };

        xdg.portal = {
          enable = true;
          wlr.enable = true;
          extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
          xdgOpenUsePortal = true;

          # warning: xdg-desktop-portal 1.17 reworked how portal implementations are loaded, you
          # should either set `xdg.portal.config` or `xdg.portal.configPackages`
          # to specify which portal backend to use for the requested interface.
          # 
          # https://github.com/flatpak/xdg-desktop-portal/blob/1.18.1/doc/portals.conf.rst.in
          # 
          # If you simply want to keep the behaviour in < 1.17, which uses the first
          # portal implementation found in lexicographical order, use the following:
          # 
          # xdg.portal.config.common.default = "*";
          config.common.default = "*";
        };

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