alpha
Login
or
Join now
seanaye.bsky.social
/
nixos-config
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
me like nix
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
update picker
author
Sean Aye
date
9 months ago
(Aug 31, 2025, 11:49 AM -0400)
commit
e0327556
e03275562338f8e2629654b9ef2d71e8022d10db
parent
dfed3ec0
dfed3ec04519d847ffbbfbb6fefcaf88cc94333e
change-id
wortskyl
wortskylxkymrvkwvvukztnowxpzlrlk
+26
-10
2 changed files
Expand all
Collapse all
Unified
Split
hosts
common
home.nix
waybar
style.css
+10
-10
hosts/common/home.nix
Reviewed
···
35
35
};
36
36
};
37
37
binds = {
38
38
-
"Mod+d".action.spawn = [
39
39
-
"wofi"
40
40
-
"--show"
41
41
-
"drun"
42
42
-
"--prompt"
43
43
-
"Search..."
44
44
-
];
38
38
+
"Mod+d".action.spawn = "fuzzel";
39
39
+
"Mod+e".action.spawn = "bemoji";
40
40
+
"Mod+n".action.spawn = "networkmanager_dmenu";
45
41
"Mod+a".action.spawn = "alacritty";
46
42
"Mod+h".action = {
47
43
focus-column-left = { };
···
212
208
};
213
209
214
210
clock = {
211
211
+
format = "{:%d-%m-%Y %H:%M}";
215
212
tooltip-format = "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>";
216
216
-
format-alt = "{:%Y-%m-%d}";
213
213
+
format-alt = "{:%Y-%m-%d %H:%M:%S}";
217
214
};
218
215
219
216
cpu = {
···
371
368
htop
372
369
zellij # terminal multiplexer
373
370
alacritty
374
374
-
wofi # Application launcher (or pkgs.rofi-wayland)
371
371
+
fuzzel # Application launcher
372
372
+
bemoji # emoji picker
373
373
+
networkmanager_dmenu # network picker for fuzzel
375
374
waybar # Status bar (highly recommended)
376
375
mako # Notification daemon
377
376
swww # For setting wallpapers
···
427
426
keybinds = {
428
427
unbind = [ "Ctrl q" ];
429
428
};
429
429
+
pane_frames = false;
430
430
ui = {
431
431
-
pane_frames = false;
431
431
+
pane_frames.hide_session_name = true;
432
432
};
433
433
};
434
434
};
+16
hosts/common/waybar/style.css
Reviewed
···
69
69
color: @red;
70
70
}
71
71
72
72
+
#network {
73
73
+
color: @green;
74
74
+
}
75
75
+
76
76
+
#cpu {
77
77
+
color: @peach;
78
78
+
}
79
79
+
80
80
+
#memory {
81
81
+
color: @mauve;
82
82
+
}
83
83
+
84
84
+
#temperature {
85
85
+
color: @red;
86
86
+
}
87
87
+
72
88
#backlight {
73
89
color: @yellow;
74
90
}