From 74fcd720419e262bff751f482c50645119dbc425 Mon Sep 17 00:00:00 2001 From: vorboyvo Date: Tue, 12 Nov 2024 12:11:58 -0500 Subject: [PATCH] Removed a bunch of comments. Installed zathura properly, through nix. --- hosts/randolph/home.nix | 34 ++-------------------------------- 1 file changed, 2 insertions(+), 32 deletions(-) diff --git a/hosts/randolph/home.nix b/hosts/randolph/home.nix index 30cd5eb..5f11657 100644 --- a/hosts/randolph/home.nix +++ b/hosts/randolph/home.nix @@ -85,7 +85,6 @@ in { [ terminal ] ++ # Terminal emulator [ qutebrowser - zathura evince imv vlc @@ -159,7 +158,7 @@ in { }]; }; - # Fixes electron apps and also nnn + # Fixes electron apps home.sessionVariables = { NIXOS_OZONE_WL = "1"; @@ -170,16 +169,9 @@ in { xdg.configFile."fontconfig/conf.d/20-default.fonts.conf".source = "${extra}/20-default-fonts.conf"; - # fix nemo terminal integration - # dconf.settings."org/cinnamon/desktop/applications/terminal".exec = - # "${pkgs.lib.getExe terminal}"; - # dconf.settings."org/cinnamon/desktop/applications/terminal".exec-arg = "-e --cwd %F"; - # terminal emulator programs.alacritty.enable = true; - # programs.neovim = import ./programs/neovim.nix; - programs.kakoune = import ../../programs/kakoune.nix pkgs; xdg.configFile."kak-lsp/kak-lsp.toml".source = ../../programs/kakoune/kak-lsp.toml; @@ -211,31 +203,9 @@ in { categories = [ "Utility" "TextEditor" ]; }; - programs.nnn = { + programs.zathura = { enable = true; - plugins = { - src = pkgs.fetchFromGitHub { - owner = "jarun"; - repo = "nnn"; - rev = "v4.9"; - hash = "sha256-g19uI36HyzTF2YUQKFP4DE2ZBsArGryVHhX79Y0XzhU="; - }; - }; }; - xdg.desktopEntries.nnn = { - name = "nnn"; - genericName = "File Manager"; - comment = "Terminal file manager"; - exec = "env NNN_TRASH=2 nnn -Adex"; - terminal = true; - mimeType = [ "inode/directory" ]; - categories = [ "System" "FileTools" "FileManager" "ConsoleOnly" ]; - settings.Keywords = "File;Manager;Management;Explorer;Launcher"; - }; - - # programs.zathura = { - # enable = true; - # }; programs.pandoc = { enable = true; };