blob: 49537a25dc92fc9b0112db21db4bec71fb0061e7 (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
|
{
homeManager,
inputs,
moduleNameSpace,
...
}:
{
config,
lib,
pkgs,
...
}:
let
cfg = config.${moduleNameSpace}.windowManagers;
st-patched =
(pkgs.st.override {
extraLibs = [ pkgs.libXcursor ];
}).overrideAttrs
(oldAttrs: rec {
patches = map pkgs.fetchpatch [
{
url = "https://st.suckless.org/patches/xresources/st-xresources-20230320-45a15676.diff";
sha256 = "sha256-WcL9IeyanXFiOFDGGRU0QNT8DU7wSo2o+3n+TaqASUY=";
}
{
url = "https://st.suckless.org/patches/vertcenter/st-vertcenter-20231003-eb3b894.diff";
sha256 = "sha256-RbFNdGNi5HLAp1s8QOX3qsfxpkLcp1p/vksyZORN/uc=";
}
{
url = "https://st.suckless.org/patches/anysize/st-anysize-20220718-baa9357.diff";
hash = "sha256-yx9VSwmPACx3EN3CAdQkxeoJKJxQ6ziC9tpBcoWuWHc=";
}
{
url = "https://st.suckless.org/patches/csi_22_23/st-csi_22_23-0.8.5.diff";
hash = "sha256-+izEkGVkLCbhZNBD2WN4uX5j+YMmou7JaMVmPG0mrYk=";
}
{
url = "https://st.suckless.org/patches/sync/st-appsync-20200618-b27a383.diff";
sha256 = "sha256-lys7/nup7a+GcmW+CutX0kjmbbOis2stkuhw02beuPs=";
}
{
url = "https://st.suckless.org/patches/fix_keyboard_input/st-fix-keyboard-input-20180605-dc3b5ba.diff";
sha256 = "sha256-h5ZrCj4IrkMQanLSMmgXaRd7qZYqvbzqUnuFt/axsMI=";
}
{
url = "https://st.suckless.org/patches/boxdraw/st-boxdraw_v2-0.8.5.diff";
sha256 = "sha256-WN/R6dPuw1eviHOvVVBw2VBSMDtfi1LCkXyX36EJKi4=";
}
{
url = "https://st.suckless.org/patches/bold-is-not-bright/st-bold-is-not-bright-20190127-3be4cf1.diff";
sha256 = "sha256-IhrTgZ8K3tcf5HqSlHm3GTacVJLOhO7QPho6SCGXTHw=";
}
];
postPatch = oldAttrs.postPatch or "" + ''
sed -i 's/const int boxdraw = 0;/const int boxdraw = 1;/g' config.def.h
sed -i 's/const int boxdraw_bold = 0;/const int boxdraw_bold = 1;/g' config.def.h
grep -q Xcursor x.c || sed -i '/#include <X11\/XKBlib.h>/a #include <X11/Xcursor/Xcursor.h>' x.c
sed -i 's/XCreateFontCursor/XcursorLibraryLoadCursor/g' x.c
sed -i 's/static unsigned int mouseshape/static char *mouseshape/' config.def.h
sed -i 's/XC_xterm/"ibeam"/' config.def.h
sed -i 's/-lXft/-lXft -lXcursor/g' config.mk
'';
});
in
{
imports = [
# (import ./picom.nix homeManager)
(import ./scripts.nix homeManager)
];
config = lib.mkIf cfg.dwm.enable (
if !homeManager then
{
services.xserver = {
enable = true;
windowManager.dwm = {
enable = true;
package = inputs.mydwm.packages.${pkgs.stdenv.hostPlatform.system}.default;
};
autoRepeatDelay = 300;
autoRepeatInterval = 20;
excludePackages = with pkgs; [ xterm ];
displayManager.sessionCommands = ''
${pkgs.systemd}/bin/systemctl --user import-environment DISPLAY XAUTHORITY XDG_SESSION_TYPE
${pkgs.dbus}/bin/dbus-update-activation-environment --systemd DISPLAY XAUTHORITY XDG_SESSION_TYPE
'';
};
programs.ssh.askPassword = "";
}
else
{
xdg.dataFile."dwm/autostart.sh" = {
executable = true;
text = ''
#!${pkgs.bash}/bin/bash
gnome-keyring-daemon --start --components=secrets,ssh,pkcs11 &
${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1 &
[ -f ~/.Xresources ] && xrdb -merge ~/.Xresources
xrandr --output eDP --set TearFree on
sync_dms
systemctl --user restart xidlehook.service xautolock-session.service xss-lock.service clipcat.service
'';
};
home.packages = with pkgs; [
st-patched
xdotool
xclip
(pkgs.dmenu.overrideAttrs (oldAttrs: {
patches = (oldAttrs.patches or [ ]) ++ [
(pkgs.fetchpatch {
url = "https://tools.suckless.org/dmenu/patches/xresources/dmenu-xresources-4.9.diff";
sha256 = "sha256-Np9I8hhnwmGA3W5v4tSrBN9Or8Q2Ag9x8H3yf8L9jDI=";
})
];
}))
];
services.clipcat = {
enable = false;
daemonSettings = {
daemonize = false;
max_history = 50;
desktop_notification = {
enable = false;
};
};
menuSettings = {
server_endpoint = "/run/user/1000/clipcat/grpc.sock";
finder = "rofi";
rofi = {
menu_length = 10;
line_length = 100;
menu_prompt = "Clipboard";
extra_arguments = [ ];
};
};
};
systemd.user.services.clipcat = {
Unit = {
ConditionEnvironment = [ "XDG_SESSION_TYPE=x11" ];
};
};
xresources.extraConfig = lib.mkIf config.beeMods.matugen.enable ''
#include "${config.xdg.configHome}/x11/matugen.Xresources"
'';
xresources.properties = {
"Xft.dpi" = 96;
"Xft.autohint" = 0;
"Xft.antialias" = true;
"Xft.hinting" = true;
"Xft.lcdfilter" = "lcddefault";
"Xft.hintstyle" = "hintfull";
"Xft.rgba" = "rgb";
"st.font" =
"JetBrainsMono Nerd Font:size=${toString config.beeMods.terminal.font.size}:antialias=true:autohint=true";
"dmenu.font" =
"${config.beeMods.terminal.font.family}:size=${toString config.beeMods.terminal.font.size}";
# "st.borderpx" = 2;
};
}
);
}
|