From 022a8066569ad446353768de39ef8e9017dce398 Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Thu, 18 Apr 2024 23:24:28 +0200 Subject: [PATCH] chore: update morty home options --- hosts/morty/home-config.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hosts/morty/home-config.nix b/hosts/morty/home-config.nix index 470520c..000cb12 100644 --- a/hosts/morty/home-config.nix +++ b/hosts/morty/home-config.nix @@ -1,11 +1,16 @@ { ... }: { config.modules = { application = { + gnupg.enable = true; zathura.enable = true; foot.enable = true; }; cli = { + direnv.enable = true; + ghq.enable = true; + git.enable = true; neovim.enable = true; + utils.enable = true; vifm.enable = true; zsh.enable = true; }; @@ -23,6 +28,10 @@ waybar = { laptop = true; gpuThermal.enable = false; + cpuThermal = { + hwmonPathAbs = "/sys/devices/platform/coretemp.0/hwmon/"; + inputFilename = "temp1_input"; + }; }; }; };