From fa44b3bf24801869bb9df81dc44d687ad70fefd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Tue, 12 Mar 2019 19:20:44 +0100 Subject: [PATCH] zathura: dont use home-manager --- dot/zathura.nix | 5 ----- main.nix | 10 +++++++--- 2 files changed, 7 insertions(+), 8 deletions(-) delete mode 100644 dot/zathura.nix diff --git a/dot/zathura.nix b/dot/zathura.nix deleted file mode 100644 index da918e6..0000000 --- a/dot/zathura.nix +++ /dev/null @@ -1,5 +0,0 @@ -{ - options = { - selection-clipboard = "clipboard"; - }; -} diff --git a/main.nix b/main.nix index 2e0eef2..9a6b02f 100644 --- a/main.nix +++ b/main.nix @@ -100,10 +100,14 @@ in { ignores = config.constants.ignore; }; + xdg.configFile = { + "mpv/input.conf".text = import dot/mpv.nix; + "Typora/themes/base.user.css".text = import dot/typora.nix; + "htop/htoprc".text = builtins.readFile dot/htoprc; + "zathura/zathurarc".text = "set selection-clipboard clipboard"; + }; + home.file = { - ".config/mpv/input.conf".text = import dot/mpv.nix; - ".config/Typora/themes/base.user.css".text = import dot/typora.nix; - ".config/htop/htoprc".text = builtins.readFile dot/htoprc; ".ghc/ghci.conf".text = import dot/ghci.nix { inherit pkgs; }; ".stack/config.yaml".text = import dot/stack.nix { user = config.constants.user; }; ".zshrc".text = "# nothing to see here";