aboutsummaryrefslogtreecommitdiff
path: root/gui/apps
diff options
context:
space:
mode:
authorAdrian Kummerlaender2019-04-17 20:36:50 +0200
committerAdrian Kummerlaender2019-04-17 20:36:50 +0200
commitc7e8420e8f2951fe260614c9c3aee7b0dd1f394d (patch)
tree81c2d483aa692c7701be9ca123da8fbfec78f224 /gui/apps
parenta28061ac275ae665f6e8bdd131e7b56422176f1d (diff)
downloadnixos_home-c7e8420e8f2951fe260614c9c3aee7b0dd1f394d.tar
nixos_home-c7e8420e8f2951fe260614c9c3aee7b0dd1f394d.tar.gz
nixos_home-c7e8420e8f2951fe260614c9c3aee7b0dd1f394d.tar.bz2
nixos_home-c7e8420e8f2951fe260614c9c3aee7b0dd1f394d.tar.lz
nixos_home-c7e8420e8f2951fe260614c9c3aee7b0dd1f394d.tar.xz
nixos_home-c7e8420e8f2951fe260614c9c3aee7b0dd1f394d.tar.zst
nixos_home-c7e8420e8f2951fe260614c9c3aee7b0dd1f394d.zip
Update config after system update
Diffstat (limited to 'gui/apps')
-rw-r--r--gui/apps/file.nix3
-rw-r--r--gui/apps/sxiv.nix11
2 files changed, 5 insertions, 9 deletions
diff --git a/gui/apps/file.nix b/gui/apps/file.nix
index 98228b4..c5c8d18 100644
--- a/gui/apps/file.nix
+++ b/gui/apps/file.nix
@@ -4,11 +4,10 @@
home = {
packages = let
custom-sxiv = import ./sxiv.nix pkgs;
- unstable = import <nixpkgs-unstable> {};
in with pkgs; [
# browser
pcmanfm
- unstable.nnn file
+ nnn file
# automounting
gvfs lxmenu-data shared_mime_info
# tools
diff --git a/gui/apps/sxiv.nix b/gui/apps/sxiv.nix
index 376669f..48390dc 100644
--- a/gui/apps/sxiv.nix
+++ b/gui/apps/sxiv.nix
@@ -2,12 +2,9 @@
pkgs.callPackage ../pkgs/sxiv.nix {
theme = {
- bar_font_name = "Iosevka";
- bar_font_size = "12";
- win_bg = "#000000";
- win_fs = "#999999";
- sel = "#aadb0f";
- bar_bg = "#161616";
- bar_fg = "#909636";
+ font_name = "Iosevka";
+ font_size = "12";
+ bg = "#161616";
+ fg = "#909636";
};
}