Regenerated

This commit is contained in:
2026-04-09 11:51:59 +02:00
parent 948f1d1c99
commit d9c2edafd3
3 changed files with 368 additions and 308 deletions
@@ -0,0 +1,16 @@
{ config, pkgs, ... }:
let
username = "henrov"; # Replace with your username if needed
in
{
home-manager.users = {
${username} = {
home.file = {
".config/shared/colors.css" = {
text = builtins.readFile ./generated/.config/shared/colors.css;
force = true;
};
};
};
};
}