Switch to module-based rice
This commit is contained in:
parent
a8ee39aaa3
commit
61329e5f96
19 changed files with 505 additions and 547 deletions
|
|
@ -1,6 +1,8 @@
|
|||
{ pkgs, ... }:
|
||||
{ nixosConfig, ... }:
|
||||
with nixosConfig.nix-rice.lib;
|
||||
let
|
||||
strPalette = pkgs.lib.nix-rice.palette.toRgbHex pkgs.rice.colorPalette;
|
||||
inherit (nixosConfig.nix-rice) rice;
|
||||
strPalette = palette.toRgbHex rice.colorPalette;
|
||||
in
|
||||
{
|
||||
programs.zathura = {
|
||||
|
|
@ -11,7 +13,7 @@ in
|
|||
options = {
|
||||
# completion-bg = strPalette.bright.black;
|
||||
# default-bg = strPalette.normal.black;
|
||||
font = "${pkgs.rice.font.normal.name} 10";
|
||||
font = "${rice.font.normal.name} 10";
|
||||
# inputbar-bg = strPalette.bright.black;
|
||||
# inputbar-fg = strPalette.normal.cyan;
|
||||
page-padding = 10;
|
||||
|
|
@ -59,6 +61,5 @@ in
|
|||
# recolor = true;
|
||||
recolor-keephue = true; # keep original color
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue