From 0640c6d50358069f6eb50b6749406063b4f7fec7 Mon Sep 17 00:00:00 2001 From: vorboyvo Date: Sun, 25 Feb 2024 22:41:07 -0500 Subject: [PATCH] Configured papirus icon theme through gtk --- home.nix | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/home.nix b/home.nix index a3cadbf..0f65784 100644 --- a/home.nix +++ b/home.nix @@ -18,12 +18,22 @@ in size = 256; }; + # Configure icon theme + gtk = { + enable = true; + iconTheme = { + name = "Papirus"; + package = pkgs.papirus-icon-theme; + }; + }; + # Install packages home.packages = with pkgs; [ gcc tree-sitter ] ++ # Basic dev tools [ texliveFull ] ++ # Typesetting (with ocamlPackages; [ ocaml opam dune_3 dune-release merlin ocaml-lsp odoc ocamlformat utop ]) ++ # OCaml [ python3 ] ++ # I guess..... + [ julia_18 ] ++ # Julia [ grim slurp wl-clipboard jq (callPackage ./pkgs/xdg-terminal-exec/xdg-terminal-exec.nix {}) blueman ] ++ # Basic utilities [ bitwarden-cli ] ++ # Personalized selection of command-line (CLI/TUI) apps [ terminal ] ++ # Terminal emulator @@ -32,7 +42,7 @@ in [ (callPackage ./pkgs/mons/mons.nix {}) ] ++ # Games [ swaybg bemenu j4-dmenu-desktop fcitx5-with-addons ] ++ # Sway- and Wayland-related packages [ noto-fonts redhat-official-fonts overpass ibm-plex font-awesome ] ++ # Fonts - [ papirus-icon-theme ] ++ # Icons + # [ papirus-icon-theme ] ++ # Icons # [ vanilla-dmz ] ++ # Cursor [ ];