Remove unused modules

This commit is contained in:
Filippo Berto 2021-10-25 01:06:17 +02:00
parent 8240e28c06
commit 1502fa1e36
4 changed files with 0 additions and 50 deletions

View file

@ -1,22 +0,0 @@
{ pkgs, ... }:
let
nord = import ../configs/themes/nord.nix;
in
{
home.packages = [ pkgs.rice.font.monospace.package ];
programs.kitty = {
enable = true;
settings = {
# font = pkgs.rice.font.monospace;
# font = {
# package = pkgs.nerdfonts;
# name = "Fira Code Retina Nerd Font Complete";
# size = 9;
# };
font = "${pkgs.rice.font.monospace.name} 10";
};
extraConfig = ''
backround_opacity = 0.95;
'';
};
}

View file

@ -1,7 +0,0 @@
{
programs.pazi = {
enable = true;
enableBashIntegration = true;
enableZshIntegration = true;
};
}

View file

@ -1,21 +0,0 @@
{ pkgs, ... }:
let
strPalette = with pkgs.rice; palette.toRgbHex colorPalette;
in
{
home.packages = [ pkgs.rice.font.normal.package ];
programs.zathura = {
enable = true;
options = {
completion-bg = strPalette.bright.black;
default-bg = strPalette.normal.black;
font = "${pkgs.rice.font.normal.name} 10";
inputbar-bg = strPalette.bright.black;
inputbar-fg = strPalette.normal.cyan;
page-padding = 10;
recolor-lightcolor = strPalette.dark.cyan;
statusbar-bg = strPalette.bright.black;
selection-clipboard = "clipboard";
};
};
}

View file