diff --git a/home/desktop/hyprland/default.nix b/home/desktop/hyprland/default.nix index 05bcaf9..cb60854 100644 --- a/home/desktop/hyprland/default.nix +++ b/home/desktop/hyprland/default.nix @@ -2,6 +2,8 @@ { imports = [ ../../common/desktop + ./swaylock.nix + ./swayidle.nix ]; home.packages = with pkgs; [ diff --git a/home/desktop/hyprland/swayidle.nix b/home/desktop/hyprland/swayidle.nix new file mode 100644 index 0000000..4c2beab --- /dev/null +++ b/home/desktop/hyprland/swayidle.nix @@ -0,0 +1,20 @@ +{ config, ... }: let + swaylock = "${config.programs.swaylock.package}/bin/swaylock"; +in { + services.swayidle = { + enable = true; + systemdTarget = "graphical-session.target"; + events = [ + { + event = "before-sleep"; + command = "${swaylock} --daemonize"; + } + ]; + timeouts = [ + { + timeout = 4 * 60; + command = "${swaylock} --daemonize --grace 15"; + } + ]; + }; +} diff --git a/home/desktop/hyprland/swaylock.nix b/home/desktop/hyprland/swaylock.nix new file mode 100644 index 0000000..c663548 --- /dev/null +++ b/home/desktop/hyprland/swaylock.nix @@ -0,0 +1,9 @@ +{ pkgs, ... }: { + programs.swaylock = { + enable = true; + package = pkgs.swaylock-effects; + settings = { + effect-blur = "20x3"; + }; + }; +} diff --git a/nixos/desktop/hyprland.nix b/nixos/desktop/hyprland.nix new file mode 100644 index 0000000..278140b --- /dev/null +++ b/nixos/desktop/hyprland.nix @@ -0,0 +1,3 @@ +{ ... }: { + security.pam.services.swaylock = {}; +} diff --git a/nixos/enoko/configuration.nix b/nixos/enoko/configuration.nix index 8b0b480..86f7da2 100644 --- a/nixos/enoko/configuration.nix +++ b/nixos/enoko/configuration.nix @@ -9,6 +9,7 @@ ../common ./hardware-configuration.nix ../services/postgres.nix + ../desktop/hyprland.nix ]; nixpkgs = { @@ -57,6 +58,7 @@ xkbVariant = ""; }; services.fwupd.enable = true; + powerManagement.enable = true; users.users = { lu = { diff --git a/nixos/yukari/configuration.nix b/nixos/yukari/configuration.nix index 2b8d99f..e32bef6 100644 --- a/nixos/yukari/configuration.nix +++ b/nixos/yukari/configuration.nix @@ -9,6 +9,7 @@ ../common ./hardware-configuration.nix ../services/postgres.nix + ../desktop/hyprland.nix ]; nixpkgs = {