system changes

This commit is contained in:
jjanzen 2025-01-08 17:33:13 -06:00
parent 8cd20ca088
commit 74b24d23c2

View file

@ -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