Compare commits

...
4 Commits
5 changed files with 40 additions and 1 deletions
+1
View File
@@ -8,6 +8,7 @@
development-tools
i18n-de
mount-duke-smb
# (sunshine "weckyy702")
#TODO: moar aspects
];
@@ -0,0 +1,5 @@
{
flake.modules.homeManager.keith-weckyy702-git = {
programs.git.signing.key = "/home/weckyy702/.ssh/id_ed25519";
};
}
@@ -14,12 +14,13 @@
path = "${inputs.assets}/horizontal_16x9.png";
};
})
ashell
keith-weckyy702-git
vesktop
spicetify
borgmatic
qbittorrent
prusa-slicer
];
};
+7
View File
@@ -63,6 +63,10 @@ hl.bind(mod .. " + H", hl.dsp.focus({ direction = "left" }))
hl.bind(mod .. " + L", hl.dsp.focus({ direction = "right" }))
hl.bind(mod .. " + K", hl.dsp.focus({ direction = "up" }))
hl.bind(mod .. " + J", hl.dsp.focus({ direction = "down" }))
hl.bind(mod .. " + SHIFT + H", hl.dsp.window.move({ direction = "left", group_aware = true, }))
hl.bind(mod .. " + SHIFT + L", hl.dsp.window.move({ direction = "right", group_aware = true, }))
hl.bind(mod .. " + SHIFT + K", hl.dsp.window.move({ direction = "up", group_aware = true, }))
hl.bind(mod .. " + SHIFT + J", hl.dsp.window.move({ direction = "down", group_aware = true, }))
hl.bind(mod .. " + mouse:272", hl.dsp.window.drag(), { mouse = true })
hl.bind(mod .. " + mouse:273", hl.dsp.window.resize(), { mouse = true })
@@ -79,6 +83,9 @@ hl.gesture({
action = "workspace"
})
hl.bind(mod .. " + CTRL + H", hl.dsp.workspace.move({ monitor = "l" }))
hl.bind(mod .. " + CTRL + L", hl.dsp.workspace.move({ monitor = "r" }))
--- Media handling
hl.bind("XF86AudioRaiseVolume", hl.dsp.exec_cmd("wpctl set-volume -l 1 @DEFAULT_AUDIO_SINK@ 5%+"), { locked = true, repeating = true })
hl.bind("XF86AudioLowerVolume", hl.dsp.exec_cmd("wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-"), { locked = true, repeating = true })
+25
View File
@@ -0,0 +1,25 @@
{
config.flake.factory.sunshine = user: {
services.sunshine = {
enable = true;
autoStart = true;
capSysAdmin = true;
applications = {
apps = [
{
name = "Steam Big Picture";
detached = [
"sudo -u ${user} setsid steam steam://open/bigpicture"
];
prep-cmd = [
{
do = "";
undo = "sudo -u ${user} setsid steam steam://close/bigpicture";
}
];
}
];
};
};
};
}