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
+1
View File
@@ -6,6 +6,7 @@
./modules/editor.nix
./modules/git.nix
./modules/tmux.nix
./modules/scripts.nix
];
# ============================================
+18
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;
};
};
}