nix-config/modules/home-manager/cli/scripts/default.nix

20 lines
375 B
Nix
Raw Normal View History

{ pkgs, ... }:
2025-03-29 23:34:25 +00:00
{
# TODO: separate desktop-only scripts?
home.packages =
let
scriptNames = [
"create-script"
"mounter"
"move-firefox-screenshots"
"setbg"
"tag-release"
2025-07-10 22:28:33 +01:00
"todos-add"
"unmounter"
"update-all-git-repos"
];
in
map (name: pkgs.callPackage ./${name}.nix { }) scriptNames;
2025-03-29 23:34:25 +00:00
}