diff options
-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 |