diff options
Diffstat (limited to 'home')
-rw-r--r-- | home/home.nix | 12 | ||||
-rw-r--r-- | home/packages.nix | 14 |
2 files changed, 15 insertions, 11 deletions
diff --git a/home/home.nix b/home/home.nix index c93daef..e743f2a 100644 --- a/home/home.nix +++ b/home/home.nix @@ -392,11 +392,13 @@ services.mako = { enable = true; - backgroundColor = "#74389eb0"; - borderColor = "#c27cb6ff"; - defaultTimeout = 5000; # milliseconds - padding = "10"; - output = "DP-9"; + settings = { + background-color = "#74389eb0"; + border-color = "#c27cb6ff"; + default-timeout = 5000; # milliseconds + padding = "10"; + output = "DP-9"; + }; }; services.mpd = { diff --git a/home/packages.nix b/home/packages.nix index 30d129d..15aeeca 100644 --- a/home/packages.nix +++ b/home/packages.nix @@ -1,12 +1,14 @@ { config, lib, pkgs, inputs, system, craneLib, ... }: let - isabelle = import "${inputs.playground.outPath}/isabelle-nix-fhsenv" { inherit pkgs; }; + isabelle = import "${inputs.playground.outPath}/isabelle-nix-fhsenv" { inherit pkgs; }; + fonts = with lib.attrsets; + builtins.filter isDerivation (attrValues pkgs.nerd-fonts); in { - home.packages = with pkgs; [ + home.packages = with pkgs; fonts ++ [ emacs-pgtk - emacs-all-the-icons-fonts nerdfonts + emacs-all-the-icons-fonts julia-mono # internet apps & clients firefox keepassxc mumble lynx offpunk @@ -17,7 +19,7 @@ in gimp-with-plugins inkscape pavucontrol # krita gst_all_1.gstreamer vimiv-qt # LaTeX & documents - xournal pandoc zathura pdfpc + xournalpp pandoc zathura pdfpc poppler_utils typst rustex (texlive.combine { inherit (texlive) scheme-full; @@ -28,7 +30,7 @@ in wl-clipboard showrt kijetesantakaluotokieni mpc_cli dufs progress hledger wineWowPackages.full sops xdg-utils exiftool - mercurial darcs git-annex-remote-remarkable2 + mercurial darcs git-annex-remote-remarkable2 git-who rlwrap # graphical utils kitty @@ -58,7 +60,7 @@ in # C/C++ clang clang-tools rtags irony-server # others - python39 inweb + python3 inweb # nix things npins nix-output-monitor direnv # isabelle |