Create nixwork device.

This commit is contained in:
jay
2025-07-17 20:50:30 +00:00
parent 956c23e606
commit 256fbf7bca
13 changed files with 311 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{ lib, ... }: {
programs.hyprpanel = {
settings = {
"bar.layouts" = {
"0" = {
right = [ "battery" ];
};
};
bar = {
customModules = {
cava = {
framerate = lib.mkForce 120;
};
};
};
};
};
}