21 lines
277 B
Nix
21 lines
277 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
home.file = {
|
||
|
"bin/clbin" = {
|
||
|
source = ./clbin;
|
||
|
executable = true;
|
||
|
};
|
||
|
|
||
|
"bin/ix" = {
|
||
|
source = ./ix;
|
||
|
executable = true;
|
||
|
};
|
||
|
|
||
|
"bin/sprunge" = {
|
||
|
source = ./sprunge;
|
||
|
executable = true;
|
||
|
};
|
||
|
};
|
||
|
}
|