feat: switched back to dunst

This commit is contained in:
Patrick Großmann 2023-10-24 21:59:47 +02:00
parent 8912f87918
commit e2dbc1b2a3
Signed by: patrick
GPG key ID: 451F95EFB8BECD0F
2 changed files with 17 additions and 12 deletions

View file

@ -2,6 +2,6 @@
age.secrets.usbguard.rekeyFile = ../../secrets/usbguard.rules.age; age.secrets.usbguard.rekeyFile = ../../secrets/usbguard.rules.age;
services.usbguard = { services.usbguard = {
ruleFile = config.age.secrets.usbguard.path; ruleFile = config.age.secrets.usbguard.path;
enable = true; #enable = true;
}; };
} }

View file

@ -1,8 +1,12 @@
{pkgs, ...}: { {
pkgs,
config,
...
}: {
imports = [ imports = [
#./deadd #./deadd
./themes.nix ./themes.nix
./wired-notify.nix #./wired-notify.nix
]; ];
home = { home = {
packages = with pkgs; [ packages = with pkgs; [
@ -14,13 +18,14 @@
}; };
# notification are nice to have # notification are nice to have
#services.dunst = { services.dunst = {
# enable = true; enable = true;
# settings.global = { settings.global = {
# frame_width = 0; monitor = 1;
# highlight = config.lib.stylix.colors.withHashtag.base0C; frame_width = 0;
# progress_bar_frame_width = 0; highlight = config.lib.stylix.colors.withHashtag.base0C;
# progress_bar_corner_radius = 0; progress_bar_frame_width = 0;
# }; progress_bar_corner_radius = 0;
#}; };
};
} }