blob: 9e8a0a85400a16da0801d574564b549e3cdeb5c1 (
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
|
{ pkgs, ... }:
{
imports = [
./gtk.nix
./rofi.nix
./twmn.nix
];
xsession = {
enable = true;
pointerCursor = {
package = pkgs.vanilla-dmz;
name = "Vanilla-DMZ-AA";
};
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;
}
|