#+title: Custom Scripts Import various scripts useful on my system. #+begin_src nix { config, pkgs, ... }: { home.file."./.local/bin/deploy-website" = { executable = true; source = ./deploy-website; }; home.file."./local/bin/launcher" = { executable = true; source = ./launcher; }; home.file."./local/bin/remove-quarantine" = { executable = true; source = ./remove-quarantine; }; } #+end_src