[NixOS] Use dunst instead of notify-osd
This commit is contained in:
parent
037213d298
commit
017a953b1b
113
nixos/dunst.nix
Normal file
113
nixos/dunst.nix
Normal file
@ -0,0 +1,113 @@
|
|||||||
|
{
|
||||||
|
services.dunst = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
global =
|
||||||
|
{
|
||||||
|
monitor = 0;
|
||||||
|
follow = "mouse";
|
||||||
|
indicate_hidden = "yes";
|
||||||
|
stack_duplicates = true;
|
||||||
|
hide_duplicate_count = false;
|
||||||
|
|
||||||
|
title = "Dunst";
|
||||||
|
class = "Dunst";
|
||||||
|
|
||||||
|
show_age_threshold = 60;
|
||||||
|
ellipsize = "middle";
|
||||||
|
ignore_newline = "no";
|
||||||
|
show_indicators = "no";
|
||||||
|
sticky_history = "no";
|
||||||
|
history_length = 20;
|
||||||
|
|
||||||
|
always_run_script = true;
|
||||||
|
ignore_dbusclose = false;
|
||||||
|
force_xinerama = false;
|
||||||
|
|
||||||
|
# Notification
|
||||||
|
sort = "yes";
|
||||||
|
scale = 0;
|
||||||
|
shrink = "no";
|
||||||
|
word_wrap = "yes";
|
||||||
|
|
||||||
|
# Geometry
|
||||||
|
width = 300;
|
||||||
|
height = 200;
|
||||||
|
origin = "top-right";
|
||||||
|
offset = "12+48";
|
||||||
|
|
||||||
|
padding = 20;
|
||||||
|
horizontal_padding = 20;
|
||||||
|
notification_limit = 0;
|
||||||
|
separator_height = 2;
|
||||||
|
|
||||||
|
# Progress-Bar
|
||||||
|
progress_bar = true;
|
||||||
|
progress_bar_height = 10;
|
||||||
|
progress_bar_frame_width = 1;
|
||||||
|
progress_bar_min_width = 150;
|
||||||
|
progress_bar_max_width = 300;
|
||||||
|
|
||||||
|
# # Aesthetics
|
||||||
|
# font = let
|
||||||
|
# inherit (config.modules.themes.font.mono) family weight;
|
||||||
|
# in "${family} ${weight} 11";
|
||||||
|
frame_width = 2;
|
||||||
|
separator_color = "frame";
|
||||||
|
transparency = 0;
|
||||||
|
|
||||||
|
line_height = 1;
|
||||||
|
idle_threshold = 120;
|
||||||
|
markup = "full";
|
||||||
|
format = "<span font='13' weight='bold'>%s</span>\\n%b";
|
||||||
|
alignment = "left";
|
||||||
|
vertical_alignment = "center";
|
||||||
|
|
||||||
|
icon_position = "left";
|
||||||
|
min_icon_size = 0;
|
||||||
|
max_icon_size = 64;
|
||||||
|
|
||||||
|
# Keybindings
|
||||||
|
close = "ctrl+space";
|
||||||
|
close_all = "ctrl+shift+space";
|
||||||
|
history = "ctrl+grave";
|
||||||
|
context = "ctrl+shift+period";
|
||||||
|
|
||||||
|
mouse_left_click = "close_current";
|
||||||
|
mouse_middle_click = "do_action, close_current";
|
||||||
|
mouse_right_click = "close_all";
|
||||||
|
};
|
||||||
|
|
||||||
|
experimental = {per_monitor_dpi = true;};
|
||||||
|
fullscreen_pushback_everything = {fullscreen = "pushback";};
|
||||||
|
};
|
||||||
|
# // optionalAttrs (active != null) {
|
||||||
|
# urgency_low = let
|
||||||
|
# inherit (config.modules.themes.colors.main.types) bg fg;
|
||||||
|
# in {
|
||||||
|
# foreground = "${fg}";
|
||||||
|
# background = "${bg}";
|
||||||
|
# timeout = 5;
|
||||||
|
# #icon = /path/to/icon;
|
||||||
|
# };
|
||||||
|
# urgency_normal = let
|
||||||
|
# inherit (config.modules.themes.colors.main.types) bg fg border;
|
||||||
|
# in {
|
||||||
|
# foreground = "${fg}";
|
||||||
|
# background = "${bg}";
|
||||||
|
# frame_color = "${border}";
|
||||||
|
# timeout = 7;
|
||||||
|
# #icon = /path/to/icon;
|
||||||
|
# };
|
||||||
|
# urgency_critical = let
|
||||||
|
# inherit (config.modules.themes.colors.main.types) bg fg error;
|
||||||
|
# in {
|
||||||
|
# foreground = "${fg}";
|
||||||
|
# background = "${bg}";
|
||||||
|
# frame_color = "${error}";
|
||||||
|
# timeout = 10;
|
||||||
|
# #icon = /path/to/icon
|
||||||
|
# };
|
||||||
|
# };
|
||||||
|
};
|
||||||
|
}
|
@ -1,19 +0,0 @@
|
|||||||
{ config, ... }: {
|
|
||||||
services.git-sync = {
|
|
||||||
enable = true;
|
|
||||||
repositories = {
|
|
||||||
config = {
|
|
||||||
path = config.home.homeDirectory + "/config";
|
|
||||||
uri = "git@github.com:IvanMalison/config.git";
|
|
||||||
};
|
|
||||||
org = {
|
|
||||||
path = config.home.homeDirectory + "/org";
|
|
||||||
uri = "git@github.com:IvanMalison/org.git";
|
|
||||||
};
|
|
||||||
password-store = {
|
|
||||||
path = config.home.homeDirectory + "/.password-store";
|
|
||||||
uri = "git@github.com:IvanMalison/.password-store.git";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
@ -33,6 +33,8 @@ makeEnable config "modules.xmonad" true {
|
|||||||
];
|
];
|
||||||
|
|
||||||
home-manager.users = forEachUser {
|
home-manager.users = forEachUser {
|
||||||
|
imports = [ ./dunst.nix ];
|
||||||
|
|
||||||
services.blueman-applet = {
|
services.blueman-applet = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
@ -42,11 +44,6 @@ makeEnable config "modules.xmonad" true {
|
|||||||
package = inputs.imalison-taffybar.defaultPackage."${pkgs.system}";
|
package = inputs.imalison-taffybar.defaultPackage."${pkgs.system}";
|
||||||
};
|
};
|
||||||
|
|
||||||
services.notify-osd = {
|
|
||||||
enable = true;
|
|
||||||
package = pkgs.notify-osd-customizable;
|
|
||||||
};
|
|
||||||
|
|
||||||
services.kdeconnect = {
|
services.kdeconnect = {
|
||||||
enable = true;
|
enable = true;
|
||||||
indicator = true;
|
indicator = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user