Compare commits
3 commits
cc0c29c9d3
...
63c07fbb55
Author | SHA1 | Date | |
---|---|---|---|
63c07fbb55 | |||
c9892f2e5c | |||
56b2d3f4fe |
5 changed files with 18 additions and 4 deletions
|
@ -8,6 +8,11 @@
|
||||||
let
|
let
|
||||||
inherit (lib) mapAttrsToList mkIf hasAttr;
|
inherit (lib) mapAttrsToList mkIf hasAttr;
|
||||||
inherit (lib.my) getExe getExe';
|
inherit (lib.my) getExe getExe';
|
||||||
|
|
||||||
|
desktop = osConfig.modules.system.roles.desktop;
|
||||||
|
term = getExe desktop.terminal;
|
||||||
|
filemanager = getExe desktop.filemanager;
|
||||||
|
cliphistEnabled = osConfig.modules.services.cliphist.enable;
|
||||||
in
|
in
|
||||||
mkIf osConfig.programs.hyprland.enable {
|
mkIf osConfig.programs.hyprland.enable {
|
||||||
home.sessionVariables.ELECTRON_OZONE_PLATFORM_HINT = "auto";
|
home.sessionVariables.ELECTRON_OZONE_PLATFORM_HINT = "auto";
|
||||||
|
@ -156,6 +161,7 @@ mkIf osConfig.programs.hyprland.enable {
|
||||||
bind =
|
bind =
|
||||||
let
|
let
|
||||||
copy = getExe' pkgs.wl-clipboard "wl-copy";
|
copy = getExe' pkgs.wl-clipboard "wl-copy";
|
||||||
|
cliphist = getExe pkgs.cliphist;
|
||||||
in
|
in
|
||||||
[
|
[
|
||||||
"$mod, D, exec, ${getExe osConfig.modules.system.roles.desktop.runner.package}"
|
"$mod, D, exec, ${getExe osConfig.modules.system.roles.desktop.runner.package}"
|
||||||
|
@ -164,7 +170,7 @@ mkIf osConfig.programs.hyprland.enable {
|
||||||
"$mod SHIFT, Q, killactive,"
|
"$mod SHIFT, Q, killactive,"
|
||||||
"$mod, V, togglefloating"
|
"$mod, V, togglefloating"
|
||||||
"$mod SHIFT, P, exec, ${getExe pkgs.scripts.powerMenu}"
|
"$mod SHIFT, P, exec, ${getExe pkgs.scripts.powerMenu}"
|
||||||
"$mod, P, exec, ${getExe pkgs.cliphist} wipe & ${getExe pkgs.hyprlock}"
|
"$mod, P, exec, ${cliphist} wipe & ${getExe pkgs.hyprlock}"
|
||||||
"$mod SHIFT, C, exec, hyprctl reload"
|
"$mod SHIFT, C, exec, hyprctl reload"
|
||||||
"$mod SHIFT, space, togglefloating"
|
"$mod SHIFT, space, togglefloating"
|
||||||
"$mod, left, movefocus, l"
|
"$mod, left, movefocus, l"
|
||||||
|
@ -173,13 +179,13 @@ mkIf osConfig.programs.hyprland.enable {
|
||||||
"$mod, down, movefocus, d"
|
"$mod, down, movefocus, d"
|
||||||
|
|
||||||
# Example special workspace (scratchpad)
|
# Example special workspace (scratchpad)
|
||||||
"$mod, S, togglespecialworkspace, magic"
|
"$mod, D, togglespecialworkspace, magic"
|
||||||
"$mod SHIFT, S, movetoworkspace, special:magic"
|
"$mod SHIFT, D, movetoworkspace, special:magic"
|
||||||
"$mod, X, fullscreen, 1"
|
"$mod, X, fullscreen, 1"
|
||||||
"$mod, F, fullscreen, 0"
|
"$mod, F, fullscreen, 0"
|
||||||
"$mod, N, exec, ${pkgs.swaynotificationcenter}/bin/swaync-client -t"
|
|
||||||
"$mod, U, exec, ${pkgs.hyprshot}/bin/hyprshot -o ${config.xdg.userDirs.pictures}/screenshots -m region"
|
"$mod, U, exec, ${pkgs.hyprshot}/bin/hyprshot -o ${config.xdg.userDirs.pictures}/screenshots -m region"
|
||||||
"$mod SHIFT, U, exec, ${pkgs.hyprshot}/bin/hyprshot --raw -m region | ${getExe pkgs.satty} -f - --fullscreen --copy-command ${copy}"
|
"$mod SHIFT, U, exec, ${pkgs.hyprshot}/bin/hyprshot --raw -m region | ${getExe pkgs.satty} -f - --fullscreen --copy-command ${copy}"
|
||||||
|
"$mod, S, exec, ${cliphist} list | ${desktop.runner.dmenu} | ${cliphist} decode | ${copy}"
|
||||||
|
|
||||||
#: Brightness and Media {{{
|
#: Brightness and Media {{{
|
||||||
",XF86MonBrightnessUp, exec, ${pkgs.brightnessctl}/bin/brightnessctl s +10%"
|
",XF86MonBrightnessUp, exec, ${pkgs.brightnessctl}/bin/brightnessctl s +10%"
|
||||||
|
|
|
@ -165,6 +165,7 @@ in
|
||||||
libvirtd.enable = true;
|
libvirtd.enable = true;
|
||||||
docker = {
|
docker = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
extraPackages = [ pkgs.docker-credential-helpers ];
|
||||||
rootless = {
|
rootless = {
|
||||||
enable = true;
|
enable = true;
|
||||||
setSocketVariable = true;
|
setSocketVariable = true;
|
||||||
|
|
|
@ -33,6 +33,8 @@ in
|
||||||
efiInstallAsRemovable = true;
|
efiInstallAsRemovable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
virtualisation.docker.enable = true;
|
||||||
|
|
||||||
modules = {
|
modules = {
|
||||||
server.rustypaste = {
|
server.rustypaste = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -111,6 +113,7 @@ in
|
||||||
virtualHosts = builtins.listToAttrs [
|
virtualHosts = builtins.listToAttrs [
|
||||||
(mkVHost "rusty.ccnlc.eu" 8000 true)
|
(mkVHost "rusty.ccnlc.eu" 8000 true)
|
||||||
(mkVHost "hedgedoc.ccnlc.eu" 4739 true)
|
(mkVHost "hedgedoc.ccnlc.eu" 4739 true)
|
||||||
|
(mkVHost "dpp.ccnlc.eu" 8120 true)
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -12,6 +12,8 @@ let
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
virtualisation.docker.autoPrune.enable = true;
|
||||||
|
|
||||||
services.gitea-actions-runner = {
|
services.gitea-actions-runner = {
|
||||||
package = pkgs.forgejo-runner;
|
package = pkgs.forgejo-runner;
|
||||||
|
|
||||||
|
|
|
@ -40,5 +40,7 @@ in
|
||||||
|
|
||||||
postStop = "${cfg.package}/bin/cliphist wipe";
|
postStop = "${cfg.package}/bin/cliphist wipe";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
environment.systemPackages = [ cfg.package ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue