aboutsummaryrefslogtreecommitdiff
path: root/macos.local
diff options
context:
space:
mode:
Diffstat (limited to 'macos.local')
-rw-r--r--macos.local/.flake/home/scripts/core.nix.org21
1 files changed, 9 insertions, 12 deletions
diff --git a/macos.local/.flake/home/scripts/core.nix.org b/macos.local/.flake/home/scripts/core.nix.org
index da1b84a..62c8a38 100644
--- a/macos.local/.flake/home/scripts/core.nix.org
+++ b/macos.local/.flake/home/scripts/core.nix.org
@@ -5,20 +5,17 @@ Import various scripts useful on my system.
{ config, pkgs, ... }:
{
- home.file."./.local/bin/hmmmmm".text = "hi";
home.file."./.local/bin/deploy-website" = {
- executable = true;
- source = ./deploy-website;
+ executable = true;
+ source = ./deploy-website;
};
- home.file = {
- "./local/bin/launcher" = {
- executable = true;
- source = ./launcher;
- };
- "./local/bin/remove-quarantine" = {
- executable = true;
- source = ./remove-quarantine;
- };
+ home.file."./local/bin/launcher" = {
+ executable = true;
+ source = ./launcher;
+ };
+ home.file."./local/bin/remove-quarantine" = {
+ executable = true;
+ source = ./remove-quarantine;
};
}
#+end_src