implementing home.file instead of xdg.config
This commit is contained in:
+305
-303
File diff suppressed because it is too large
Load Diff
@@ -1776,13 +1776,15 @@ let
|
|||||||
in
|
in
|
||||||
{
|
{
|
||||||
programs.waybar.enable = true;
|
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" = {
|
home.file.".config/waybar/config" = {
|
||||||
source = repoWaybarDir + "/config.jsonc";
|
source = "${repoWaybarDir}/config.jsonc";
|
||||||
};
|
};
|
||||||
home.file.".config/waybar/style.css" = {
|
home.file.".config/waybar/style.css" = {
|
||||||
source = repoWaybarDir + "/style.css";
|
source = "${repoWaybarDir}/style.css";
|
||||||
};
|
};
|
||||||
programs.waybar.style = "";
|
|
||||||
}
|
}
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
|||||||
@@ -4,11 +4,13 @@ let
|
|||||||
in
|
in
|
||||||
{
|
{
|
||||||
programs.waybar.enable = true;
|
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" = {
|
home.file.".config/waybar/config" = {
|
||||||
source = repoWaybarDir + "/config.jsonc";
|
source = "${repoWaybarDir}/config.jsonc";
|
||||||
};
|
};
|
||||||
home.file.".config/waybar/style.css" = {
|
home.file.".config/waybar/style.css" = {
|
||||||
source = repoWaybarDir + "/style.css";
|
source = "${repoWaybarDir}/style.css";
|
||||||
};
|
};
|
||||||
programs.waybar.style = "";
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user