add cursors

This commit is contained in:
KoenDR06 2026-01-31 16:14:10 +01:00
parent fc51202293
commit e0dd3a991f
5 changed files with 57 additions and 2 deletions

View file

@ -46,6 +46,10 @@ in {
pskRaw = "ext:psk_sticky";
};
"Woestgaafsecure" = {
pskRaw = "ext:psk_sticky";
};
"Utrecht University" = {
authProtocols = ["WPA-EAP"];
auth = ''

View file

@ -8,6 +8,9 @@
cfg = config.horseman.wm.hyprland;
colors = config.horseman.catppuccin.colors;
flavor = config.horseman.catppuccin.flavor;
cursorSize = 24;
in {
imports = [
./options.nix
@ -40,9 +43,11 @@ in {
wl-clipboard # Clipboard
fuzzel # Launcher
xdg-desktop-portal-hyprland # XDG Portal (needed but idk why)
catppuccin-cursors."${flavor}Dark" # Cursors
];
horseman.hardware.keyd.enable = true;
horseman.dots.gtk.enable = true;
nix-hyprland = {
enable = true;
@ -53,16 +58,17 @@ in {
"hyprpaper"
"systemctl --user start hyprpolkitagent"
"waybar"
"hyprctl setcursor catppuccin-${flavor}-dark-cursors 24"
];
env = [
{
name = "XCURSOR_SIZE";
value = "24";
value = toString cursorSize;
}
{
name = "HYPRCURSOR_SIZE";
value = "24";
value = toString cursorSize;
}
];
@ -141,6 +147,8 @@ in {
sensitivity = 0.0;
touchpad.naturalScroll = true;
numlockByDefault = true;
touchpad.disableWhileTyping = true;
};
group = {

View file

@ -441,6 +441,13 @@ in {
params = "";
}
{
flags = [];
mods = [];
key = "XF86AudioMute";
dispatcher = "exec";
params = "wpctl set-volume -l 1.0 @DEFAULT_AUDIO_SINK@ 0%";
}
{
flags = ["e" "l"];
mods = [];