Regenerated

This commit is contained in:
2026-04-11 10:04:35 +02:00
parent 3d6710b478
commit 84d00c0c3a
3 changed files with 331 additions and 328 deletions
+321 -320
View File
File diff suppressed because it is too large Load Diff
+5 -4
View File
@@ -1279,14 +1279,15 @@ in
{ lib, config, pkgs, flakeRoot, ... }:
let
username = config.defaultUser or "henrov";
flakeRootPath = /. + flakeRoot;
basePath = lib.path.append flakeRootPath "generated";
scriptsPath = lib.path.append basePath ".config/scripts";
scriptsPath = flakeRoot + "/generated/.config/scripts";
scriptFiles = lib.filesystem.listFilesRecursive scriptsPath;
toRelative = file:
lib.path.removePrefix basePath file;
let
base = toString flakeRoot + "/generated/";
in
lib.removePrefix base (toString file);
toFileEntry = file: {
name = toRelative file;
@@ -1,14 +1,15 @@
{ lib, config, pkgs, flakeRoot, ... }:
let
username = config.defaultUser or "henrov";
flakeRootPath = /. + flakeRoot;
basePath = lib.path.append flakeRootPath "generated";
scriptsPath = lib.path.append basePath ".config/scripts";
scriptsPath = flakeRoot + "/generated/.config/scripts";
scriptFiles = lib.filesystem.listFilesRecursive scriptsPath;
toRelative = file:
lib.path.removePrefix basePath file;
let
base = toString flakeRoot + "/generated/";
in
lib.removePrefix base (toString file);
toFileEntry = file: {
name = toRelative file;