feat: use swayidle instead of hypridle
This commit is contained in:
parent
e0c1e40f27
commit
3097632cfb
4 changed files with 99 additions and 26 deletions
|
@ -1,7 +1,6 @@
|
||||||
# This file contains default settings used across different systems
|
# This file contains default settings used across different systems
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./hypridle
|
|
||||||
./hyprland
|
./hyprland
|
||||||
./hyprlock
|
./hyprlock
|
||||||
./foot.nix
|
./foot.nix
|
||||||
|
@ -9,5 +8,6 @@
|
||||||
./terminal
|
./terminal
|
||||||
./rofi
|
./rofi
|
||||||
./sway
|
./sway
|
||||||
|
./sway/swayidle.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,26 +1,34 @@
|
||||||
{ pkgs, ... }:
|
|
||||||
{
|
{
|
||||||
services.swayidle = {
|
pkgs,
|
||||||
enable = true;
|
lib,
|
||||||
events = [
|
config,
|
||||||
{
|
...
|
||||||
event = "before-sleep";
|
}:
|
||||||
command = "${pkgs.swaylock}/bin/swaylock";
|
lib.mkIf config.services.swayidle.enable {
|
||||||
}
|
services.swayidle =
|
||||||
{
|
let
|
||||||
event = "lock";
|
locker = "${pkgs.hyprlock}/bin/hyprlock";
|
||||||
command = "${pkgs.swaylock}/bin/swaylock";
|
in
|
||||||
}
|
{
|
||||||
];
|
events = [
|
||||||
timeouts = [
|
{
|
||||||
{
|
event = "before-sleep";
|
||||||
timeout = 300;
|
command = locker;
|
||||||
command = "${pkgs.swaylock}/bin/swaylock";
|
}
|
||||||
}
|
{
|
||||||
{
|
event = "lock";
|
||||||
timeout = 1200;
|
command = locker;
|
||||||
command = "${pkgs.systemd}/bin/systemctl hibernate";
|
}
|
||||||
}
|
];
|
||||||
];
|
timeouts = [
|
||||||
};
|
{
|
||||||
|
timeout = 300;
|
||||||
|
command = locker;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
timeout = 1200;
|
||||||
|
command = "${pkgs.systemd}/bin/systemctl hibernate";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
../../home/hyprpaper
|
../../home/hyprpaper
|
||||||
../../home/themes/catppuccin.nix
|
../../home/themes/catppuccin.nix
|
||||||
../../home
|
../../home
|
||||||
|
../../home/sway/swayidle.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.direnv = {
|
programs.direnv = {
|
||||||
|
@ -24,7 +25,10 @@
|
||||||
waybar.enable = true;
|
waybar.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
services.blueman-applet.enable = true;
|
services = {
|
||||||
|
blueman-applet.enable = true;
|
||||||
|
swayidle.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
stateVersion = config.system.stateVersion;
|
stateVersion = config.system.stateVersion;
|
||||||
|
|
61
hosts/raptus/headscale.nix
Normal file
61
hosts/raptus/headscale.nix
Normal file
|
@ -0,0 +1,61 @@
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
inputs,
|
||||||
|
...
|
||||||
|
|
||||||
|
}:
|
||||||
|
{
|
||||||
|
environment.systemPackages = [ config.services.headscale.package ];
|
||||||
|
|
||||||
|
services = {
|
||||||
|
headscale = {
|
||||||
|
enable = true;
|
||||||
|
address = "127.0.0.1";
|
||||||
|
port = 8521;
|
||||||
|
|
||||||
|
server_url = "https://hs.notashelf.dev";
|
||||||
|
tls_cert_path = null;
|
||||||
|
tls_key_path = null;
|
||||||
|
|
||||||
|
ephemeral_node_inactivity_timeout = "30m";
|
||||||
|
node_update_check_interval = "10s";
|
||||||
|
metrics_listen_addr = "127.0.0.1:8086";
|
||||||
|
# logging
|
||||||
|
log = {
|
||||||
|
format = "text";
|
||||||
|
level = "info";
|
||||||
|
};
|
||||||
|
|
||||||
|
logtail.enabled = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
nginx.virtualHosts."hs.ccnlc.eu" = {
|
||||||
|
forceSSL = true;
|
||||||
|
enableACME = true;
|
||||||
|
quic = true;
|
||||||
|
http3 = true;
|
||||||
|
|
||||||
|
locations = {
|
||||||
|
"/" = {
|
||||||
|
proxyPass = "http://localhost:${toString config.services.headscale.port}";
|
||||||
|
proxyWebsockets = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
"/metrics" = {
|
||||||
|
proxyPass = "http://${toString config.services.headscale.settings.metrics_listen_addr}/metrics";
|
||||||
|
};
|
||||||
|
|
||||||
|
# see <https://github.com/gurucomputing/headscale-ui/blob/master/SECURITY.md> before
|
||||||
|
# possibly using the web frontend
|
||||||
|
"/web" = {
|
||||||
|
root = "${inputs.nyxexprs.packages.headscale-ui}/share";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
extraConfig = ''
|
||||||
|
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload" always;
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue