Compare commits
2 Commits
0bb481c037
...
616d6771c8
| Author | SHA1 | Date | |
|---|---|---|---|
|
616d6771c8
|
|||
|
4416f39f0c
|
BIN
FastFetch.png
BIN
FastFetch.png
Binary file not shown.
|
Before Width: | Height: | Size: 2.0 MiB After Width: | Height: | Size: 2.6 MiB |
BIN
NeoVim.png
BIN
NeoVim.png
Binary file not shown.
|
Before Width: | Height: | Size: 2.0 MiB |
@ -4,14 +4,6 @@ Modular NixOS configuration, using Hyprland (yikes) or Niri for a tiling/scrolli
|
|||||||
|
|
||||||

|

|
||||||
|
|
||||||
<p float="left" align="middle">
|
|
||||||
<img src="/NeoVim.png" width="33%" />
|
|
||||||
<img src="/Rmpc.png" width="33%" />
|
|
||||||
<img src="/Btop.png" width="33%" />
|
|
||||||
</p>
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
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`.
|
||||||
|
|
||||||
|
|||||||
@ -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;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user