From e868ae599d22a1c42a85f9382e106bfc113862bf Mon Sep 17 00:00:00 2001 From: Mikhail Klementev Date: Sun, 29 Nov 2020 19:25:47 +0000 Subject: [PATCH] Move dunst configuration to home-manager --- etc/dunstrc | 6 ------ home-manager.nix | 14 +++++++++++++- 2 files changed, 13 insertions(+), 7 deletions(-) delete mode 100644 etc/dunstrc diff --git a/etc/dunstrc b/etc/dunstrc deleted file mode 100644 index ea9b409..0000000 --- a/etc/dunstrc +++ /dev/null @@ -1,6 +0,0 @@ -[global] -font = Ubuntu Mono 12 - -[ignore] -summary = "browserpass: Install native host app" -format = "" \ No newline at end of file diff --git a/home-manager.nix b/home-manager.nix index 0c4c2e5..26b83fd 100644 --- a/home-manager.nix +++ b/home-manager.nix @@ -25,6 +25,19 @@ in { }; home-manager.users.user = { + services.dunst = { + enable = true; + settings = { + global = { + font = "Ubuntu Mono 12"; + }; + ignore = { + summary = "browserpass: Install native host app"; + format = ""; + }; + }; + }; + programs = { git = { enable = true; @@ -106,7 +119,6 @@ in { ".oh-my-zsh-custom/plugins/tmux-my/tmux-my.plugin.zsh".source = ./etc/tmux-my/tmux-my.plugin.zsh; ".config/user-dirs.dirs".source = ./etc/user-dirs.dir; - ".config/dunst/dunstrc".source = ./etc/dunstrc; ".config/kitty/kitty.conf".source = ./etc/kitty.conf; };