From 1502fa1e366f342cc486aca9ef9962969796dd4d Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Mon, 25 Oct 2021 01:06:17 +0200 Subject: [PATCH] Remove unused modules --- modules/kitty.nix | 22 ---------------------- modules/pazi.nix | 7 ------- modules/zathura.nix | 21 --------------------- home.nix => odin.nix | 0 4 files changed, 50 deletions(-) delete mode 100644 modules/kitty.nix delete mode 100644 modules/pazi.nix delete mode 100644 modules/zathura.nix rename home.nix => odin.nix (100%) diff --git a/modules/kitty.nix b/modules/kitty.nix deleted file mode 100644 index 7bfc20b..0000000 --- a/modules/kitty.nix +++ /dev/null @@ -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; - ''; - }; -} diff --git a/modules/pazi.nix b/modules/pazi.nix deleted file mode 100644 index 01701a9..0000000 --- a/modules/pazi.nix +++ /dev/null @@ -1,7 +0,0 @@ -{ - programs.pazi = { - enable = true; - enableBashIntegration = true; - enableZshIntegration = true; - }; -} diff --git a/modules/zathura.nix b/modules/zathura.nix deleted file mode 100644 index 4d2b946..0000000 --- a/modules/zathura.nix +++ /dev/null @@ -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"; - }; - }; -} diff --git a/home.nix b/odin.nix similarity index 100% rename from home.nix rename to odin.nix