dotfiles/macos.local/.flake/home/scripts/core.nix.org
2025-01-08 17:24:21 -06:00

479 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;
      };
    };
  }