Files

19 lines
389 B
Nix
Raw Permalink Normal View History

2026-04-07 18:37:17 +02:00
{ 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;
};
};
}