1

Compare commits

...

2 Commits

Author SHA1 Message Date
616d6771c8 Update screenshots 2026-03-21 11:21:10 +01:00
4416f39f0c Modules/Niri: Enable dunst 2026-03-21 11:21:02 +01:00
7 changed files with 44 additions and 8 deletions

BIN
Btop.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 MiB

After

Width:  |  Height:  |  Size: 2.6 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 MiB

BIN
Niri.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 777 KiB

View File

@ -4,14 +4,6 @@ Modular NixOS configuration, using Hyprland (yikes) or Niri for a tiling/scrolli
![](FastFetch.png) ![](FastFetch.png)
<p float="left" align="middle">
<img src="/NeoVim.png" width="33%" />
<img src="/Rmpc.png" width="33%" />
<img src="/Btop.png" width="33%" />
</p>
![](Niri.png)
To install, run `nixos-rebuild` with the `--flake` parameter from the `NixFlake` directory: `nixos-rebuild switch --flake .#nixinator`. To install, run `nixos-rebuild` with the `--flake` parameter from the `NixFlake` directory: `nixos-rebuild switch --flake .#nixinator`.
Alternatively, use `nh os switch` or `nh os boot`. Alternatively, use `nh os switch` or `nh os boot`.

BIN
Rmpc.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 MiB

View File

@ -147,6 +147,41 @@ in {
]; ];
}; };
services = {
dunst = {
enable = true;
iconTheme.package = color.iconPackage;
iconTheme.name = color.iconTheme;
settings = {
global = {
# monitor = config.homemodules.waybar.monitor;
follow = "keyboard";
font = "${color.font} 11";
offset = "9x11";
background = color.hexS.base;
foreground = color.hexS.text;
frame_width = 2;
corner_radius = 8;
separator_color = "frame";
};
urgency_low = {
frame_color = color.hexS.green;
};
urgency_normal = {
frame_color = color.hexS.green;
};
urgency_critical = {
frame_color = color.hexS.red;
};
};
};
};
programs = { programs = {
walker = { walker = {
enable = true; enable = true;
@ -491,6 +526,11 @@ in {
top = 4; # Somehow the bar eclusivity doesn't work as expected top = 4; # Somehow the bar eclusivity doesn't work as expected
bottom = 2; bottom = 2;
}; };
shadow = {
enable = true;
draw-behind-window = true;
};
}; };
gestures = { gestures = {
@ -591,6 +631,10 @@ in {
# Waybar rounded corners background clipping fix # Waybar rounded corners background clipping fix
matches = [{namespace = "waybar";}]; matches = [{namespace = "waybar";}];
opacity = 0.99; opacity = 0.99;
shadow = {
enable = true;
draw-behind-window = true;
};
} }
]; ];