aboutsummaryrefslogtreecommitdiff
path: root/modules/desktop/system/components
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-07-08 01:17:08 +0000
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-07-08 01:17:08 +0000
commit2006018e7a280f70c9a7d9efc70632fbb86059ac (patch)
tree07c5bc0155ad75a07a093a77668ca89c9f18b010 /modules/desktop/system/components
parentccfe06ffcf61daef56cfe0e5d3488dcb5df00bc8 (diff)
.source -> .text where possible
Diffstat (limited to 'modules/desktop/system/components')
-rw-r--r--modules/desktop/system/components/dunst.nix4
1 files changed, 2 insertions, 2 deletions
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];
};
}