nixos/home/scripts/default.nix
Evie Litherland-Smith 38c03ffac7 Remove push-iosevka-cache script
Not needed now that it's moved to separate repo
2024-03-03 21:23:26 +00:00

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))
];
}