feat: add hypridle
This commit is contained in:
parent
bcb19a1420
commit
24e98d63f3
7 changed files with 70 additions and 5 deletions
34
home/hypridle/default.nix
Normal file
34
home/hypridle/default.nix
Normal file
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
lib,
|
||||
pkgs,
|
||||
osConfig,
|
||||
...
|
||||
}:
|
||||
lib.mkIf osConfig.programs.hyprland.enable {
|
||||
services.hypridle = {
|
||||
enable = true;
|
||||
settings = {
|
||||
general = {
|
||||
lock_cmd = "pidof hyprlock || ${pkgs.hyprlock}/bin/hyprlock";
|
||||
before_sleep_cmd = "loginctl lock-session";
|
||||
after_sleep_cmd = "hyprctl dispatch dpms on";
|
||||
};
|
||||
|
||||
listener = [
|
||||
{
|
||||
timeout = 300; # 5min
|
||||
on-timeout = "loginctl lock-session"; # lock screen when timeout has passed
|
||||
}
|
||||
{
|
||||
timeout = 330; # 5.5min
|
||||
on-timeout = "hyprctl dispatch dpms off"; # screen off when timeout has passed
|
||||
on-resume = "hyprctl dispatch dpms on"; # screen on when activity is detected after timeout has fired.
|
||||
}
|
||||
{
|
||||
timeout = 1800; # 30min
|
||||
on-timeout = "systemctl suspend"; # suspend pc
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
|
@ -23,7 +23,9 @@ lib.mkIf osConfig.programs.hyprland.enable {
|
|||
"${pkgs.kdeconnect}/bin/kdeconnect-indicator"
|
||||
"${pkgs.protonmail-bridge-gui}/bin/protonmail-bridge-gui --no-window"
|
||||
"${pkgs.waybar}/bin/waybar"
|
||||
#"${pkgs.wl-clipboard}/bin/wl-paste --watch ${pkgs.cliphist}/bin/cliphist store -max-items 10"
|
||||
"${pkgs.keepassxc}/bin/keepassxc"
|
||||
"${pkgs.wl-clipboard}/bin/wl-paste --watch ${pkgs.cliphist}/bin/cliphist store -max-items 10"
|
||||
(lib.mkIf config.services.hypridle.enable "${pkgs.hypridle}/bin/hypridle")
|
||||
];
|
||||
|
||||
general = {
|
||||
|
|
|
@ -1,11 +1,17 @@
|
|||
{
|
||||
position = "top";
|
||||
layer = "top";
|
||||
reload_style_on_change = true;
|
||||
modules-left = [
|
||||
"tray"
|
||||
"privacy"
|
||||
"clock"
|
||||
"sway/mode"
|
||||
];
|
||||
modules-center = [ "sway/workspaces" ];
|
||||
modules-center = [
|
||||
"sway/workspaces"
|
||||
"hyprland/workspaces"
|
||||
];
|
||||
modules-right = [
|
||||
"backlight"
|
||||
"pulseaudio"
|
||||
|
@ -111,7 +117,6 @@
|
|||
deactivated = "";
|
||||
};
|
||||
};
|
||||
layer = "bottom";
|
||||
memory = {
|
||||
format = " {}%";
|
||||
interval = 30;
|
||||
|
@ -122,7 +127,6 @@
|
|||
format-wifi = "{essid} ({signalStrength}%) ";
|
||||
on-click = "alacritty -t nmtui -e nmtui";
|
||||
};
|
||||
position = "top";
|
||||
privacy = {
|
||||
icon-size = 18;
|
||||
icon-spacing = 4;
|
||||
|
@ -178,6 +182,10 @@
|
|||
disable-scroll = true;
|
||||
format = "{name}";
|
||||
};
|
||||
"hyprland/workspaces" = {
|
||||
all-outputs = true;
|
||||
format = "{name}";
|
||||
};
|
||||
tray = {
|
||||
icon-size = 18;
|
||||
show-passive-items = false;
|
||||
|
|
|
@ -62,6 +62,7 @@ window#waybar.hidden {
|
|||
background-color: rgba(13, 214, 250, 0.4);
|
||||
|
||||
button {
|
||||
color: white;
|
||||
padding: 1px 5px;
|
||||
}
|
||||
|
||||
|
@ -72,6 +73,14 @@ window#waybar.hidden {
|
|||
button.focused {
|
||||
background-color: rgba(50, 194, 219, 0.7);
|
||||
}
|
||||
|
||||
button.active {
|
||||
background-color: rgba(80, 194, 219, 0.7);
|
||||
}
|
||||
|
||||
button.urgent {
|
||||
background-color: rgba(255, 0, 0, 0.7);
|
||||
}
|
||||
}
|
||||
|
||||
#network {
|
||||
|
|
|
@ -17,6 +17,8 @@
|
|||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
networking.hostName = hostname;
|
||||
hardware.bluetooth.enable = true;
|
||||
hardware.bluetooth.powerOnBoot = true;
|
||||
services.blueman.enable = true;
|
||||
|
||||
services.greetd = {
|
||||
|
@ -29,6 +31,14 @@
|
|||
default_session = initial_session;
|
||||
};
|
||||
};
|
||||
xdg.portal = {
|
||||
enable = true;
|
||||
config.common.default = "*";
|
||||
extraPortals = with pkgs; [
|
||||
xdg-desktop-portal-gtk
|
||||
xdg-desktop-portal-hyprland
|
||||
];
|
||||
};
|
||||
|
||||
services.pipewire = {
|
||||
enable = true;
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
../../home/waybar
|
||||
../../home/hyprland
|
||||
../../home/hyprlock
|
||||
../../home/hypridle
|
||||
];
|
||||
|
||||
programs.direnv = {
|
||||
|
|
|
@ -30,6 +30,8 @@ in
|
|||
|
||||
hardware.bluetooth.enable = true;
|
||||
hardware.bluetooth.powerOnBoot = true;
|
||||
services.blueman.enable = true;
|
||||
|
||||
hardware.graphics.enable = true;
|
||||
|
||||
# Configure keymap in X11
|
||||
|
@ -43,7 +45,6 @@ in
|
|||
powerKey = "hibernate";
|
||||
};
|
||||
|
||||
services.blueman.enable = true;
|
||||
systemd.sleep.extraConfig = ''
|
||||
HibernateDelaySec=1200
|
||||
'';
|
||||
|
|
Loading…
Add table
Reference in a new issue