blob: 52de48debebe6498d5927579ac0fc618dcf1fed3 (
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
|
{ 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.xmonad = {
enable = true;
enableContribAndExtras = true;
config = ./conf/xmonad.hs;
};
};
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;
}
|