mirror of
https://github.com/semere-meb/dotfiles-nix.git
synced 2026-08-03 10:24:36 +00:00
added back simple desktop stack as alternatives
This commit is contained in:
parent
febd23355d
commit
552ae67f6a
9 changed files with 153 additions and 2 deletions
26
modules/swaylock.nix
Normal file
26
modules/swaylock.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue