mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-03-23 21:18:27 +01:00
Compare commits
No commits in common. "72a9eff74c26e7f84f1de21d617ca63f1e550eed" and "d0c8b770ac244ee1e660a79a0d9ab48f0e8cf5f0" have entirely different histories.
72a9eff74c
...
d0c8b770ac
6 changed files with 4 additions and 11 deletions
|
|
@ -46,7 +46,6 @@
|
||||||
|
|
||||||
# Manage session
|
# Manage session
|
||||||
bindrl = SUPER CONTROL, L, exec, loginctl lock-session
|
bindrl = SUPER CONTROL, L, exec, loginctl lock-session
|
||||||
bindrl = SUPER CONTROL, S, exec, systemctl sleep
|
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,6 @@
|
||||||
|
|
||||||
# Manage session
|
# Manage session
|
||||||
bindrl = SUPER CONTROL, L, exec, $ipc lockScreen lock
|
bindrl = SUPER CONTROL, L, exec, $ipc lockScreen lock
|
||||||
bindrl = SUPER CONTROL, S, exec, $ipc sessionMenu lockAndSuspend
|
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -49,6 +49,7 @@
|
||||||
bindrl = SUPER CONTROL, P, exec, poweroff
|
bindrl = SUPER CONTROL, P, exec, poweroff
|
||||||
bindrl = SUPER CONTROL, R, exec, reboot
|
bindrl = SUPER CONTROL, R, exec, reboot
|
||||||
bindrl = SUPER CONTROL, H, exec, systemctl hibernate
|
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
|
bindrl = SUPER CONTROL, B, exec, sleep 1 && hyprctl dispatch dpms off
|
||||||
|
|
||||||
# Control media
|
# Control media
|
||||||
|
|
|
||||||
|
|
@ -11,8 +11,8 @@ in
|
||||||
options.custom.services.alloy = {
|
options.custom.services.alloy = {
|
||||||
enable = lib.mkEnableOption "";
|
enable = lib.mkEnableOption "";
|
||||||
domain = lib.mkOption {
|
domain = lib.mkOption {
|
||||||
type = lib.types.nullOr lib.types.nonEmptyStr;
|
type = lib.types.nonEmptyStr;
|
||||||
default = null;
|
default = "";
|
||||||
};
|
};
|
||||||
port = lib.mkOption {
|
port = lib.mkOption {
|
||||||
type = lib.types.port;
|
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;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -73,8 +73,6 @@
|
||||||
|
|
||||||
console.keyMap = "de-latin1-nodeadkeys";
|
console.keyMap = "de-latin1-nodeadkeys";
|
||||||
|
|
||||||
security.sudo.extraConfig = "Defaults pwfeedback";
|
|
||||||
|
|
||||||
sops.secrets."seb-password".neededForUsers = true;
|
sops.secrets."seb-password".neededForUsers = true;
|
||||||
users = {
|
users = {
|
||||||
mutableUsers = false;
|
mutableUsers = false;
|
||||||
|
|
|
||||||
|
|
@ -25,10 +25,6 @@
|
||||||
services = {
|
services = {
|
||||||
sound.enable = true;
|
sound.enable = true;
|
||||||
syncthing.enable = true;
|
syncthing.enable = true;
|
||||||
alloy = {
|
|
||||||
enable = true;
|
|
||||||
domain = null;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue