aboutsummaryrefslogtreecommitdiff
path: root/macos.local/.flake/home/scripts/core.nix.org
diff options
context:
space:
mode:
authorjjanzen <jjanzen@jjanzen.ca>2025-01-08 17:24:21 -0600
committerjjanzen <jjanzen@jjanzen.ca>2025-01-08 17:24:21 -0600
commita75b69b88f967e6271d75a1bc122da0b2e4eeece (patch)
tree20b7fb1bec30f68e61846c45a481bee174f4af9f /macos.local/.flake/home/scripts/core.nix.org
parenta1cbc273fb92c69ea1b8534f6ef6064b5da40e31 (diff)
system changes
Diffstat (limited to 'macos.local/.flake/home/scripts/core.nix.org')
-rw-r--r--macos.local/.flake/home/scripts/core.nix.org19
1 files changed, 14 insertions, 5 deletions
diff --git a/macos.local/.flake/home/scripts/core.nix.org b/macos.local/.flake/home/scripts/core.nix.org
index 53f05db..bf5f685 100644
--- a/macos.local/.flake/home/scripts/core.nix.org
+++ b/macos.local/.flake/home/scripts/core.nix.org
@@ -5,10 +5,19 @@ Import various scripts useful on my system.
{ config, pkgs, ... }:
{
- imports = [
- ./deploy-website.nix
- ./launcher.nix
- ./remove-quarantine.nix
- ];
+ 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