blob: 40a120fa824703c9f1923f809cb9f2940a895930 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{ config, pkgs, ... }:
{ services.xserver.displayManager = {
slim = {
enable = true;
};
};
environment.systemPackages = with pkgs; [
dmenu
dunst
libnotify # for notify-send
sxhkd
scrot
];
}
|