From 2006018e7a280f70c9a7d9efc70632fbb86059ac Mon Sep 17 00:00:00 2001 From: Collin Williams <96917990+bluedragon1221@users.noreply.github.com> Date: Tue, 8 Jul 2025 01:17:08 +0000 Subject: .source -> .text where possible --- modules/desktop/system/components/dunst.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/desktop/system/components/dunst.nix') diff --git a/modules/desktop/system/components/dunst.nix b/modules/desktop/system/components/dunst.nix index 37fce2b..9dfaa80 100644 --- a/modules/desktop/system/components/dunst.nix +++ b/modules/desktop/system/components/dunst.nix @@ -6,7 +6,7 @@ }: let cfg = config.collinux.desktop.components.dunst; - settings = pkgs.writeText "dunstrc" '' + settings = '' [global] frame_color = "#89b4fa" separator_color = frame @@ -32,7 +32,7 @@ in lib.mkIf cfg.enable { hjem.users."${config.collinux.user.name}" = { - files.".config/dunst/dunstrc".source = settings; + files.".config/dunst/dunstrc".text = settings; packages = [pkgs.dunst pkgs.inotify-tools]; }; } -- cgit v1.3.1