dotfiles/home/common/scripts.nix

18 lines
198 B
Nix
Raw Normal View History

2024-08-02 11:12:36 +02:00
{
config,
lib,
pkgs,
...
}:
{
home.file = {
".local/bin" = {
recursive = true;
2024-08-02 14:09:42 +02:00
source = ./../../files/scripts;
2024-08-02 11:12:36 +02:00
};
};
home.sessionPath = [ "$HOME/.local/bin" ];
}