all repos — nixfiles @ 55180c37c7f05695ef7c4073eca334ae5fdf7ace

System and user configuration, managed by nix and home-manager

modules/programs/window-manager.nix (view raw)

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
{ 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
    rofi
    sxhkd
    scrot

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