aboutsummaryrefslogtreecommitdiff
path: root/gui/xmonad.nix
blob: d0bd1f92bb5b6a8d7c604f9fc30c3615264d722a (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
{ config, pkgs, ... }:

{
  imports = [
    ./gtk.nix
    ./twmn.nix
  ];

  xsession = {
    enable = true;

    windowManager.xmonad = {
      enable = true;
      enableContribAndExtras = true;
      config = ./conf/xmonad.hs;
    };

    initExtra = ''
      xsetroot -solid "#000000"
    '';
  };

  home.pointerCursor = {
    x11.enable = true;
    package = pkgs.vanilla-dmz;
    name    = "Vanilla-DMZ-AA";
    size    = 16;
  };

  home.packages = with pkgs; [
  # lockscreen
    i3lock
  ];

  services.screen-locker = {
    enable  = true;
    lockCmd = "${pkgs.i3lock}/bin/i3lock -n -c 000000";
  };

  programs.fish.shellAliases = {
    mph = "mpv --title hud";
  };

  services.flameshot.enable = true;
}