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

let
  hidpi = config.custom.hidpi;

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

  xsession = {
    enable = true;

    pointerCursor = {
      package = pkgs.vanilla-dmz;
      name    = "Vanilla-DMZ-AA";
      size    = if hidpi then 48 else 16;
    };

    windowManager.command = "qtile";
  };

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

  home.file.".config/qtile/config.py".source = ./conf/qtile.py;

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

  services.flameshot.enable = true;
}