diff --git a/home/README.md b/home/README.md index 2fd5c94..8932b10 100644 --- a/home/README.md +++ b/home/README.md @@ -7,13 +7,13 @@ name | description `bat` | cat replacement `direnv` | a shell extension, that loads environment variables in certain directories `default` | used for commonly shared modules, for multiple home-manager configs -`dunst` | notification daemon `git` | version control system `gtk` | themes `helix` | modal text editor `lazygit` | terminal based git command system `lf` | terminal based file manager `librewolf` | a hardened firefox fork, and my browser of choice +`mako` | a lightweight wayland notification daemon `neofetch` | fetch program `nushell` | my shell of choice `rofi` | application launcher diff --git a/home/default.nix b/home/default.nix index 9a2ec7f..fecc64c 100644 --- a/home/default.nix +++ b/home/default.nix @@ -53,8 +53,8 @@ Host pihole Hostname 192.168.1.221 User root - Host pve1 - Hostname 192.168.1.36 + Host pve + Hostname 192.168.1.37 User root ''; }; diff --git a/home/dunst/config.nix b/home/dunst/config.nix deleted file mode 100644 index c75d666..0000000 --- a/home/dunst/config.nix +++ /dev/null @@ -1,27 +0,0 @@ -{...}: { - global = { - frame_color = "#f5c2e7"; - frame_width = "4"; - separator_color = "frame"; - height = "300"; - width = "300"; - min_icon_size = 32; - max_icon_size = 128; - origin = "top-right"; - offset = "14x61"; - font = "jost 10"; - }; - urgency_low = { - background = "#1E1E2E"; - foreground = "#CDD6F4"; - }; - urgency_normal = { - background = "#1E1E2E"; - foreground = "#CDD6F4"; - }; - urgency_critical = { - background = "#1E1E2E"; - foreground = "#CDD6F4"; - frame_color = "#FAB387"; - }; -} diff --git a/home/dunst/default.nix b/home/dunst/default.nix deleted file mode 100644 index a1104c9..0000000 --- a/home/dunst/default.nix +++ /dev/null @@ -1,7 +0,0 @@ -{...}: { - services.dunst = { - enable = true; - waylandDisplay = "DP-2"; - settings = ./config.nix; - }; -} diff --git a/home/mako/default.nix b/home/mako/default.nix new file mode 100644 index 0000000..d2bcf99 --- /dev/null +++ b/home/mako/default.nix @@ -0,0 +1,19 @@ +{...}: { + services.mako = { + enable = true; + icons = true; + maxIconSize = 64; + maxVisible = 5; + defaultTimeout = 5000; + ignoreTimeout = true; + anchor = "top-right"; + output = "DP-3"; + font = "jost 10"; + padding = "10"; + margin = "18,22,0"; + backgroundColor = "#1e1e2e"; + textColor = "#cdd6f4"; + borderColor = "#f5c2e7"; + progressColor = "over #313244"; + }; +}