Switch to nix-rice

This commit is contained in:
Filippo Berto 2021-06-26 15:02:13 +02:00
parent 5f960fc2ca
commit 98e4871193
12 changed files with 31 additions and 537 deletions

View file

@ -1,14 +1,14 @@
{ pkgs, lib, ... }:
{
# Include fonts packages
home.packages = [ pkgs.extra.font.monospace.package ];
home.packages = [ pkgs.rice.font.monospace.package ];
programs.alacritty = {
enable = true;
settings = {
env.TERM = "xterm-256color";
scrolling.history = 3000;
font = {
normal.family = pkgs.extra.font.monospace.name;
normal.family = pkgs.rice.font.monospace.name;
size = 9.0;
};
background_opacity = 0.95;
@ -17,7 +17,7 @@
hints.modifiers = "Control";
};
colors = with pkgs.extra; {
colors = with pkgs.rice; {
primary = palette.toRgbHex colorPalette.primary;
cursor = palette.toRgbHex colorPalette.cursor;