From dd652a495a3be4c7ae68c78ae4eb0a84313e218a Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Tue, 26 Sep 2023 16:57:08 +0200 Subject: [PATCH 1/3] hephaestus: enable dunst --- hosts/hephaestus/home.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hosts/hephaestus/home.nix b/hosts/hephaestus/home.nix index 2b20617..3c4e9eb 100644 --- a/hosts/hephaestus/home.nix +++ b/hosts/hephaestus/home.nix @@ -15,6 +15,9 @@ my.theme = config.home-manager.users.alarsyo.my.themes.solarizedLight; + # TODO: place in global home conf + services.dunst.enable = true; + home.packages = builtins.attrValues { inherit (pkgs) From ff14a8a0a5fc03e7a0b1f8c3cf5d8997399952b5 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Tue, 26 Sep 2023 16:57:46 +0200 Subject: [PATCH 2/3] hephaestus: proper sensor config --- hosts/hephaestus/home.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/hephaestus/home.nix b/hosts/hephaestus/home.nix index 3c4e9eb..21ab96c 100644 --- a/hosts/hephaestus/home.nix +++ b/hosts/hephaestus/home.nix @@ -9,7 +9,7 @@ # Keyboard settings & i3 settings my.home.x.enable = true; my.home.x.i3bar.temperature.chip = "k10temp-pci-*"; - my.home.x.i3bar.temperature.inputs = ["Tccd1"]; + my.home.x.i3bar.temperature.inputs = ["Tctl"]; my.home.x.i3bar.networking.throughput_interfaces = ["wlp3s0"]; my.home.emacs.enable = true; From 4ae6e9d5e90a0de337caf0a49d246c5544e62064 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Tue, 26 Sep 2023 17:02:36 +0200 Subject: [PATCH 3/3] hephaestus: add dock interface to tp display --- hosts/hephaestus/home.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/hephaestus/home.nix b/hosts/hephaestus/home.nix index 21ab96c..b33aa2a 100644 --- a/hosts/hephaestus/home.nix +++ b/hosts/hephaestus/home.nix @@ -10,7 +10,7 @@ my.home.x.enable = true; my.home.x.i3bar.temperature.chip = "k10temp-pci-*"; my.home.x.i3bar.temperature.inputs = ["Tctl"]; - my.home.x.i3bar.networking.throughput_interfaces = ["wlp3s0"]; + my.home.x.i3bar.networking.throughput_interfaces = ["wlp3s0" "enp6s0f3u1u1"]; my.home.emacs.enable = true; my.theme = config.home-manager.users.alarsyo.my.themes.solarizedLight;