implementing home.file instead of xdg.config

This commit is contained in:
2026-03-01 18:42:23 +01:00
parent 31f1dc76dc
commit 653865731f
3 changed files with 315 additions and 309 deletions
+305 -303
View File
File diff suppressed because it is too large Load Diff
+5 -3
View File
@@ -1776,13 +1776,15 @@ let
in
{
programs.waybar.enable = true;
# Zorg ervoor dat Waybar geen standaardstijl genereert
programs.waybar.style = lib.mkForce ""; # Forceer leeg om conflicts te voorkomen
# Definieer de bestanden als echte files (geen symlinks)
home.file.".config/waybar/config" = {
source = repoWaybarDir + "/config.jsonc";
source = "${repoWaybarDir}/config.jsonc";
};
home.file.".config/waybar/style.css" = {
source = repoWaybarDir + "/style.css";
source = "${repoWaybarDir}/style.css";
};
programs.waybar.style = "";
}
#+end_src
+5 -3
View File
@@ -4,11 +4,13 @@ let
in
{
programs.waybar.enable = true;
# Zorg ervoor dat Waybar geen standaardstijl genereert
programs.waybar.style = lib.mkForce ""; # Forceer leeg om conflicts te voorkomen
# Definieer de bestanden als echte files (geen symlinks)
home.file.".config/waybar/config" = {
source = repoWaybarDir + "/config.jsonc";
source = "${repoWaybarDir}/config.jsonc";
};
home.file.".config/waybar/style.css" = {
source = repoWaybarDir + "/style.css";
source = "${repoWaybarDir}/style.css";
};
programs.waybar.style = "";
}