summaryrefslogtreecommitdiffstats
path: root/usecases/desktop/graphical/niri.nix
blob: c41e73479d099af71953841fd4ef21916ebde38b (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
{
  config,
  lib,
  pkgs,
  ...
}:
let
  cfg = config.reborn.niri;
in
{
  options.reborn.niri = {
    enable = lib.mkEnableOption "Reborn niri config";
  };

  config = lib.mkIf cfg.enable {
    reborn = {
      greetd.enable = true;
      swaylock.enable = true;
      swaync.enable = true;
      waybar.enable = true;
      wlsunset.enable = true;
    };

    programs.niri.enable = true;

    environment.systemPackages = [ pkgs.walker ];

    home-manager.users.minijackson.xdg.configFile."niri/config.kdl".source = ./niri.kdl;

    systemd.user.services.polkit-gnome-authentication-agent = {
      description = "GNOME Polkit authentication agent";

      wantedBy = [ "graphical-session.target" ];
      wants = [ "graphical-session.target" ];
      after = [ "graphical-session.target" ];

      serviceConfig = {
        Type = "simple";
        ExecStart = "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1";
        Restart = "on-failure";
        RestartSec = 1;
        TimeoutStopSec = 10;
      };
    };
  };
}