Move modules folders

This commit is contained in:
Filippo Berto 2025-09-11 14:00:31 +02:00
parent 914909009c
commit c1101e7b45
Signed by: bertof
GPG key ID: 9DBF7E6A1D2CE9ED
183 changed files with 327 additions and 327 deletions

View file

@ -1,29 +0,0 @@
{ nixosConfig, ... }:
with nixosConfig.nix-rice.lib;
let
inherit (nixosConfig.nix-rice) rice;
strPalette = palette.toRGBHex rice.colorPalette;
font = rice.font.normal;
in
{
services.twmn = {
enable = true;
text = {
color = strPalette.primary.foreground;
font = {
inherit (font) package size;
family = font.name;
};
};
window = {
animation.bounce.enable = false;
color = strPalette.primary.background;
height = 32;
opacity = float.round (rice.opacity * 100);
offset = {
x = -20;
y = 50;
};
};
};
}