nixos/home/scripts/lockhelper.nix

16 lines
244 B
Nix
Raw Normal View History

2024-06-10 00:26:51 +00:00
{ pkgs, ... }:
let
lockhelper = pkgs.writeShellApplication {
name = "lockhelper";
runtimeInputs = with pkgs; [
grimblast
];
text = (builtins.readFile ./lockhelper.sh);
};
in
{
home.packages = [
lockhelper
];
}