Switch to nixfmt
This commit is contained in:
parent
44794e2c3d
commit
5b974a203b
63 changed files with 990 additions and 946 deletions
|
|
@ -3,20 +3,25 @@ with pkgs.lib.nix-rice;
|
|||
let
|
||||
strPalette = palette.toRGBHex pkgs.rice.colorPalette;
|
||||
font = pkgs.rice.font.normal;
|
||||
in
|
||||
{
|
||||
in {
|
||||
services.twmn = {
|
||||
enable = true;
|
||||
text = {
|
||||
color = strPalette.primary.foreground;
|
||||
font = { inherit (font) package size; family = font.name; };
|
||||
font = {
|
||||
inherit (font) package size;
|
||||
family = font.name;
|
||||
};
|
||||
};
|
||||
window = {
|
||||
animation.bounce.enable = false;
|
||||
color = strPalette.primary.background;
|
||||
height = 32;
|
||||
opacity = float.round (pkgs.rice.opacity * 100);
|
||||
offset = { x = -20; y = 50; };
|
||||
offset = {
|
||||
x = -20;
|
||||
y = 50;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue