system changes
This commit is contained in:
parent
8cd20ca088
commit
74b24d23c2
1 changed files with 13 additions and 11 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue