dotfiles/macos.local/flake/home/scripts/core.nix.org
2025-03-05 22:17:31 -06:00

590 B

Custom Scripts

Import various scripts useful on my system.

  { config, pkgs, ... }:

  {
    home.file = {
      "./.local/bin/deploy-website" = {
        executable = true;
        source = ./deploy-website;
      };
      "./.local/bin/launcher" = {
        executable = true;
        source = ./launcher;
      };
      "./.local/bin/remove-quarantine" = {
        executable = true;
        source = ./remove-quarantine;
      };
      "./.local/bin/manage-system" = {
        executable = true;
        source = ./manage-system;
      };
    };
  }