Regenerated

This commit is contained in:
2026-04-10 18:46:25 +02:00
parent c2cbc4dbbf
commit 92d5309d53
3 changed files with 315 additions and 324 deletions
+313 -316
View File
File diff suppressed because it is too large Load Diff
+1 -4
View File
@@ -1278,12 +1278,9 @@ in
#+BEGIN_SRC nix :tangle generated/modules/traveldroid/system/copy_scripts.nix :noweb yes :mkdirp yes :eval never
{ config, pkgs, flakeRoot, ... }:
let
scriptsSrc = "${flakeRoot}/generated/.config/scripts";
in
{
home.file.".config/scripts" = {
source = scriptsSrc;
source = flakeRoot + "/generated/.config/scripts";
recursive = true;
executable = true;
};
@@ -1,11 +1,8 @@
{ config, pkgs, flakeRoot, ... }:
let
scriptsSrc = "${flakeRoot}/generated/.config/scripts";
in
{
home.file.".config/scripts" = {
source = scriptsSrc;
source = flakeRoot + "/generated/.config/scripts";
recursive = true;
executable = true;
};