Integrate scripts into home-manager

This commit is contained in:
2026-04-07 18:37:17 +02:00
parent 5403b4988e
commit d7332f3cc6
5 changed files with 300 additions and 0 deletions

18
home/modules/scripts.nix Normal file
View File

@@ -0,0 +1,18 @@
{ config, lib, pkgs, ... }:
{
home.file = {
".local/scripts/tmpclone" = {
source = ../../scripts/tmpclone;
executable = true;
};
".local/scripts/tmux-sessionizer" = {
source = ../../scripts/tmux-sessionizer;
executable = true;
};
".local/scripts/tmux-setup" = {
source = ../../scripts/tmux-setup;
executable = true;
};
};
}