added back simple desktop stack as alternatives

This commit is contained in:
Semere Meharena Mebrahtom 2026-07-21 12:36:35 +02:00
parent febd23355d
commit 552ae67f6a
Signed by: semere
GPG key ID: 7FC937214DF30488
9 changed files with 153 additions and 2 deletions

26
modules/swaylock.nix Normal file
View file

@ -0,0 +1,26 @@
{
config,
lib,
pkgs,
userVars,
...
}:
{
security.pam.services.swaylock = {};
home-manager.users."${userVars.username}" = {
programs.swaylock = {
enable = true;
settings = {
color = "1e1e2e";
ring-color = "89b4fa";
key-hl-color = "f38ba8";
line-color = "00000000";
inside-color = "1e1e2e";
separator-color = "00000000";
text-color = "cdd6f4";
};
};
};
}