Reformat + swap odin SSD
This commit is contained in:
parent
1bc27dde82
commit
2f3d05a802
83 changed files with 1448 additions and 931 deletions
55
rice.nix
55
rice.nix
|
|
@ -4,37 +4,32 @@ let
|
|||
# onedark = prev.lib.rice.palette.tPalette prev.lib.rice.color.hexToRgba (import ./themes/onedark.nix);
|
||||
# tomorrow-night = prev.lib.rice.palette.tPalette prev.lib.rice.color.hexToRgba (import ./themes/tomorrow-night.nix);
|
||||
# mkpm = with prev.lib.rice; palette.tPalette color.hexToRgba (import ./themes/monokai-pro-machine.nix);
|
||||
bloom = with prev.lib.rice; palette.tPalette color.hexToRgba (import ./themes/bloom.nix);
|
||||
bloom = with prev.lib.rice;
|
||||
palette.tPalette color.hexToRgba (import ./themes/bloom.nix);
|
||||
in
|
||||
(
|
||||
rec {
|
||||
rice = {
|
||||
colorPalette = with prev.lib.rice; rec {
|
||||
normal = palette.defaultPalette // {
|
||||
inherit (bloom.normal) black red green yellow blue magenta cyan white;
|
||||
};
|
||||
bright = palette.brighten 10 normal // {
|
||||
inherit (bloom.bright) black red green yellow blue magenta cyan white;
|
||||
};
|
||||
dark = palette.darken 10 normal;
|
||||
(rec {
|
||||
rice = {
|
||||
colorPalette = with prev.lib.rice; rec {
|
||||
normal = palette.defaultPalette // {
|
||||
inherit (bloom.normal) black red green yellow blue magenta cyan white;
|
||||
};
|
||||
font = {
|
||||
normal = {
|
||||
name = "Cantarell";
|
||||
package = final.cantarell-fonts;
|
||||
size = 10;
|
||||
};
|
||||
monospace = {
|
||||
name = "FiraCode Nerd Font Mono";
|
||||
package = (
|
||||
final.nerdfonts.override {
|
||||
fonts = [ "FiraCode" ];
|
||||
}
|
||||
);
|
||||
size = 10;
|
||||
};
|
||||
bright = palette.brighten 10 normal // {
|
||||
inherit (bloom.bright) black red green yellow blue magenta cyan white;
|
||||
};
|
||||
opacity = 0.95;
|
||||
dark = palette.darken 10 normal;
|
||||
};
|
||||
}
|
||||
)
|
||||
font = {
|
||||
normal = {
|
||||
name = "Cantarell";
|
||||
package = final.cantarell-fonts;
|
||||
size = 10;
|
||||
};
|
||||
monospace = {
|
||||
name = "FiraCode Nerd Font Mono";
|
||||
package = (final.nerdfonts.override { fonts = [ "FiraCode" ]; });
|
||||
size = 10;
|
||||
};
|
||||
};
|
||||
opacity = 0.95;
|
||||
};
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue