diff --git a/home-manager/dotfiles/hypr/hyprland.conf b/home-manager/dotfiles/hypr/hyprland.conf index e9b4ed9..04004aa 100644 --- a/home-manager/dotfiles/hypr/hyprland.conf +++ b/home-manager/dotfiles/hypr/hyprland.conf @@ -38,7 +38,7 @@ $menu = wofi --show drun # Or execute your favorite apps at launch like this: exec-once = steam & proton-mail & obsidian & discord & 1password & firefox -exec-once = waybar & swaync & hypridle +exec-once = waybar & mako & hypridle exec-once = $terminal exec-once = systemctl --user start hyprpolkitagent diff --git a/home-manager/dotfiles/mako/config b/home-manager/dotfiles/mako/config new file mode 100644 index 0000000..85c71c1 --- /dev/null +++ b/home-manager/dotfiles/mako/config @@ -0,0 +1,38 @@ +# Take a look at the mako manpage with the command: +# man 5 mako +# To view all configuration options. + +font=Cozette 11 +format=%a ⏵ %s\n%b +sort=-time +output=DP-2 +layer=overlay +anchor=top-center +background-color=#2e3440 +width=300 +height=110 +margin=5 +padding=0,5,10 +border-size=2 +border-color=#88c0d0 +border-radius=15 +icons=0 +max-icon-size=64 +default-timeout=5000 +ignore-timeout=1 + +[urgency=normal] +border-color=#d08770 + +[urgency=high] +border-color=#bf616a +default-timeout=0 + +[app-name=lightcord] +border-color=#88c0d0 + +[summary~="log-.*"] +border-color=#a3be8c + +[app-name=lightcord summary~="(.*(^| )orz|ORZ|sto|STO|otl|OTL( |$).*)"] +invisible=1 diff --git a/home-manager/home.nix b/home-manager/home.nix index 1a4e20d..dbd06d9 100644 --- a/home-manager/home.nix +++ b/home-manager/home.nix @@ -68,6 +68,7 @@ in { "${config.xdg.configHome}/hypr".source = ./dotfiles/hypr; "${config.xdg.configHome}/waybar".source = ./dotfiles/waybar; "${config.xdg.configHome}/wofi".source = ./dotfiles/wofi; + "${config.xdg.configHome}/mako".source = ./dotfiles/mako; }; packages = with pkgs; [ @@ -104,7 +105,7 @@ in { dolphin waybar font-awesome - swaynotificationcenter + mako hyprshot hyprlock hypridle diff --git a/nixos/imports/users.nix b/nixos/imports/users.nix index c9fab17..c549f4a 100644 --- a/nixos/imports/users.nix +++ b/nixos/imports/users.nix @@ -23,6 +23,10 @@ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGD/V4jLpuk7uAovkbHFr6uulfBKZmsH+BqmXIR2aYD0" ]; }; + + packages = with pkgs; [ + libnotify + ]; }; }; }