Compare commits

..

No commits in common. "72a9eff74c26e7f84f1de21d617ca63f1e550eed" and "d0c8b770ac244ee1e660a79a0d9ab48f0e8cf5f0" have entirely different histories.

6 changed files with 4 additions and 11 deletions

View file

@ -46,7 +46,6 @@
# Manage session
bindrl = SUPER CONTROL, L, exec, loginctl lock-session
bindrl = SUPER CONTROL, S, exec, systemctl sleep
'';
};
}

View file

@ -36,7 +36,6 @@
# Manage session
bindrl = SUPER CONTROL, L, exec, $ipc lockScreen lock
bindrl = SUPER CONTROL, S, exec, $ipc sessionMenu lockAndSuspend
'';
};
}

View file

@ -49,6 +49,7 @@
bindrl = SUPER CONTROL, P, exec, poweroff
bindrl = SUPER CONTROL, R, exec, reboot
bindrl = SUPER CONTROL, H, exec, systemctl hibernate
bindrl = SUPER CONTROL, S, exec, systemctl sleep
bindrl = SUPER CONTROL, B, exec, sleep 1 && hyprctl dispatch dpms off
# Control media

View file

@ -11,8 +11,8 @@ in
options.custom.services.alloy = {
enable = lib.mkEnableOption "";
domain = lib.mkOption {
type = lib.types.nullOr lib.types.nonEmptyStr;
default = null;
type = lib.types.nonEmptyStr;
default = "";
};
port = lib.mkOption {
type = lib.types.port;
@ -128,6 +128,6 @@ in
};
};
custom.services.caddy.virtualHosts.${cfg.domain}.port = lib.mkIf (cfg.domain != null) cfg.port;
custom.services.caddy.virtualHosts.${cfg.domain}.port = cfg.port;
};
}

View file

@ -73,8 +73,6 @@
console.keyMap = "de-latin1-nodeadkeys";
security.sudo.extraConfig = "Defaults pwfeedback";
sops.secrets."seb-password".neededForUsers = true;
users = {
mutableUsers = false;

View file

@ -25,10 +25,6 @@
services = {
sound.enable = true;
syncthing.enable = true;
alloy = {
enable = true;
domain = null;
};
};
};