Improve hyprlock stuff
Some checks failed
pre-commit / pre-commit (push) Failing after 17s

This commit is contained in:
2024-06-10 02:26:51 +02:00
parent f67b65245b
commit 8ab6181448
6 changed files with 27 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
{ pkgs, ... }:
let
lockhelper = pkgs.writeShellApplication {
name = "lockhelper";
runtimeInputs = with pkgs; [
grimblast
];
text = (builtins.readFile ./lockhelper.sh);
};
in
{
home.packages = [
lockhelper
];
}