aboutsummaryrefslogtreecommitdiff
path: root/macos.local/flake/home/scripts/core.nix.org
blob: a791e83374ac4a53bdeed5dab6672393ea0ae142 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#+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;
      };
      "./.local/bin/launcher" = {
        executable = true;
        source = ./launcher;
      };
      "./.local/bin/remove-quarantine" = {
        executable = true;
        source = ./remove-quarantine;
      };
      "./.local/bin/backup-org.sh" = {
        executable = true;
        source = ./backup-org.sh;
      };
    };
  }
#+end_src