Compare commits
4
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
99966bc87f | ||
|
|
ab75bec987 | ||
|
|
5bb60f75e6 | ||
|
|
de577756a6 |
@@ -8,6 +8,7 @@
|
|||||||
development-tools
|
development-tools
|
||||||
i18n-de
|
i18n-de
|
||||||
mount-duke-smb
|
mount-duke-smb
|
||||||
|
# (sunshine "weckyy702")
|
||||||
|
|
||||||
#TODO: moar aspects
|
#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";
|
path = "${inputs.assets}/horizontal_16x9.png";
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
ashell
|
||||||
|
keith-weckyy702-git
|
||||||
|
|
||||||
vesktop
|
vesktop
|
||||||
spicetify
|
spicetify
|
||||||
borgmatic
|
borgmatic
|
||||||
|
|
||||||
qbittorrent
|
|
||||||
prusa-slicer
|
prusa-slicer
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -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 .. " + L", hl.dsp.focus({ direction = "right" }))
|
||||||
hl.bind(mod .. " + K", hl.dsp.focus({ direction = "up" }))
|
hl.bind(mod .. " + K", hl.dsp.focus({ direction = "up" }))
|
||||||
hl.bind(mod .. " + J", hl.dsp.focus({ direction = "down" }))
|
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:272", hl.dsp.window.drag(), { mouse = true })
|
||||||
hl.bind(mod .. " + mouse:273", hl.dsp.window.resize(), { mouse = true })
|
hl.bind(mod .. " + mouse:273", hl.dsp.window.resize(), { mouse = true })
|
||||||
|
|
||||||
@@ -79,6 +83,9 @@ hl.gesture({
|
|||||||
action = "workspace"
|
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
|
--- Media handling
|
||||||
hl.bind("XF86AudioRaiseVolume", hl.dsp.exec_cmd("wpctl set-volume -l 1 @DEFAULT_AUDIO_SINK@ 5%+"), { locked = true, repeating = true })
|
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 })
|
hl.bind("XF86AudioLowerVolume", hl.dsp.exec_cmd("wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-"), { locked = true, repeating = true })
|
||||||
|
|||||||
@@ -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";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user