Move non-Nix bash scripts
This commit is contained in:
parent
7c9ffc116e
commit
f2eea2d397
21 changed files with 11 additions and 10 deletions
|
@ -1,9 +0,0 @@
|
|||
{ self, ... }:
|
||||
{
|
||||
home.sessionPath = [ "$HOME/bin" ];
|
||||
|
||||
home.file."bin" = {
|
||||
source = "${self}/bin";
|
||||
recursive = true;
|
||||
};
|
||||
}
|
10
modules/home-manager/cli/bin/default.nix
Normal file
10
modules/home-manager/cli/bin/default.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
home = {
|
||||
sessionPath = [ "$HOME/.local/bin" ];
|
||||
|
||||
file.".local/bin" = {
|
||||
source = ./scripts;
|
||||
recursive = true;
|
||||
};
|
||||
};
|
||||
}
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
{
|
||||
imports = [
|
||||
./bin.nix
|
||||
./bin
|
||||
./bluetuith.nix
|
||||
./direnv.nix
|
||||
./fzf.nix
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue