nixos/home/scripts/default.nix
Evie Litherland-Smith 901fe1c661 Remove emacs-sync-config.sh
Go back to simple git command in hyprland extraConfig
2024-02-17 19:10:22 +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))
];
}