Regenerated

This commit is contained in:
2026-04-29 08:44:00 +02:00
parent 3aeb7d5192
commit 373feab3cf
21 changed files with 516 additions and 516 deletions
@@ -1,13 +1,13 @@
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
{ pkgs, lib, config, repoPath, ... }:
{ pkgs, lib, config, flakeRoot, ... }:
let
username = config.defaultUser or "henrov";
quickshellPath = repoPath + "/generated/.config/quickshell";
quickshellPath = flakeRoot + "/generated/.config/quickshell";
allFiles = lib.filesystem.listFilesRecursive quickshellPath;
toRelative = file:
let
base = toString repoPath + "/generated/";
base = toString flakeRoot + "/generated/";
relative = lib.removePrefix base (toString file);
in
builtins.unsafeDiscardStringContext relative;