nixos/home/scripts/lockhelper.nix
Torjus Håkestad 8ab6181448
Some checks failed
pre-commit / pre-commit (push) Failing after 17s
Improve hyprlock stuff
2024-06-10 02:26:51 +02:00

16 lines
244 B
Nix

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