summary refs log tree commit diff stats
path: root/modules/programs/window-manager.nix
blob: 3f5849795ca9ca4c7630e90a910bf6e91049ef88 (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
{ config, pkgs, ... }:

{ services.xserver = {
   displayManager = {
    lightdm = {
        enable = true;
      };
    };
    xautolock = {
      enable = true;
      locker = "${pkgs.i3lock-color}";
      time = 5;
    };
  };

  environment.systemPackages = with pkgs; [
    dmenu
    dunst
    libnotify # for notify-send
    sxhkd
    scrot

    perlPackages.FileMimeInfo # xdg-utils uses this when no DE
  ];
}