separate hyprland config

This commit is contained in:
Tristan 2024-01-05 18:46:17 +00:00
parent a90de57f7e
commit 7cbdcdcd87
7 changed files with 380 additions and 303 deletions

14
lib/programs/swaylock.nix Normal file
View file

@ -0,0 +1,14 @@
{pkgs,...}: {
programs.swaylock = {
enable = true;
package = pkgs.swaylock-effects;
settings = {
clock = true;
screenshots = true;
effect-scale = 0.5;
effect-blur = "10x10";
grace = 5;
};
};
}