diff --git a/modules/config/usbguard.nix b/modules/config/usbguard.nix index d8f04e1..b07f5bb 100644 --- a/modules/config/usbguard.nix +++ b/modules/config/usbguard.nix @@ -2,6 +2,6 @@ age.secrets.usbguard.rekeyFile = ../../secrets/usbguard.rules.age; services.usbguard = { ruleFile = config.age.secrets.usbguard.path; - enable = true; + #enable = true; }; } diff --git a/users/common/graphical/default.nix b/users/common/graphical/default.nix index 83792bb..2e72ae4 100644 --- a/users/common/graphical/default.nix +++ b/users/common/graphical/default.nix @@ -1,8 +1,12 @@ -{pkgs, ...}: { +{ + pkgs, + config, + ... +}: { imports = [ #./deadd ./themes.nix - ./wired-notify.nix + #./wired-notify.nix ]; home = { packages = with pkgs; [ @@ -14,13 +18,14 @@ }; # notification are nice to have - #services.dunst = { - # enable = true; - # settings.global = { - # frame_width = 0; - # highlight = config.lib.stylix.colors.withHashtag.base0C; - # progress_bar_frame_width = 0; - # progress_bar_corner_radius = 0; - # }; - #}; + services.dunst = { + enable = true; + settings.global = { + monitor = 1; + frame_width = 0; + highlight = config.lib.stylix.colors.withHashtag.base0C; + progress_bar_frame_width = 0; + progress_bar_corner_radius = 0; + }; + }; }