Revert "Remove unused lockscreen module"

This reverts commit 42b6cf8c4a.
This commit is contained in:
Andreas Zweili 2023-05-10 18:28:31 +02:00
parent 39cef91f25
commit 5d32d1baf0
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,14 @@
{ pkgs, ... }:
{
# enable lockscreen
programs.xss-lock = {
enable = true;
lockerCommand = "${pkgs.i3lock}/bin/i3lock -c 000000";
};
environment.systemPackages = with pkgs; [
i3lock
];
}

View File

@ -7,6 +7,7 @@
"${custom.inputs.self}/hardware/bluetooth"
(import "${custom.inputs.self}/modules/desktop" { inherit custom; })
(import "${custom.inputs.self}/modules/docker" { inherit custom; })
"${custom.inputs.self}/modules/lockscreen"
(import "${custom.inputs.self}/modules/restic-client-desktop" { inherit custom; })
"${custom.inputs.self}/modules/tmux"
];