diff options
author | jjanzen <jjanzen@jjanzen.ca> | 2025-01-08 17:33:13 -0600 |
---|---|---|
committer | jjanzen <jjanzen@jjanzen.ca> | 2025-01-08 17:33:13 -0600 |
commit | 74b24d23c27c11be1dcd2cb490f694abaf26f6f9 (patch) | |
tree | f4979652f653137278e0fc58cf920672854f31c7 /macos.local | |
parent | 8cd20ca088df5ebec9b4385a37742da2d7c1198a (diff) |
system changes
Diffstat (limited to 'macos.local')
-rw-r--r-- | macos.local/.flake/home/scripts/core.nix.org | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/macos.local/.flake/home/scripts/core.nix.org b/macos.local/.flake/home/scripts/core.nix.org index 62c8a38..e53c38c 100644 --- a/macos.local/.flake/home/scripts/core.nix.org +++ b/macos.local/.flake/home/scripts/core.nix.org @@ -5,17 +5,19 @@ Import various scripts useful on my system. { 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; + 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; + }; }; } #+end_src |