Evie Litherland-Smith
10db59de2a
Probably not in a working state at the moment, but home-manager will build. Needs proper configuring to be used
11 lines
334 B
Nix
11 lines
334 B
Nix
{pkgs, ...}: {
|
|
home.packages = [
|
|
(pkgs.writeShellScriptBin "git-sync-all"
|
|
(builtins.readFile ./git-sync-all.sh))
|
|
(pkgs.writeShellScriptBin "rsync-local-config"
|
|
(builtins.readFile ./rsync-local-config.sh))
|
|
(pkgs.writeShellScriptBin "xdg-query-program"
|
|
(builtins.readFile ./xdg-query-program.sh))
|
|
];
|
|
}
|