From 2d8c7bfdf7106201a8a6d4e49e3a1b6f5f637bce Mon Sep 17 00:00:00 2001 From: KoenDR06 Date: Thu, 19 Feb 2026 00:09:43 +0100 Subject: [PATCH 1/3] revert commit --- modules/wm/hyprland/waybar.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/wm/hyprland/waybar.nix b/modules/wm/hyprland/waybar.nix index a5db4ac..4a822ea 100644 --- a/modules/wm/hyprland/waybar.nix +++ b/modules/wm/hyprland/waybar.nix @@ -88,12 +88,12 @@ in { }; "cpu" = { - interval = 1; + interval = 3; on-click = "kitty btop &"; }; "memory" = { - interval = 1; + interval = 3; on-click = "kitty btop &"; }; @@ -102,7 +102,7 @@ in { }; "network" = { - interval = 1; + interval = 3; tooltip-format = " {bandwidthDownBits} , {bandwidthDownBits} "; tooltip-format-wifi = "{essid}:  {bandwidthDownBits} , {bandwidthDownBits} "; @@ -110,7 +110,7 @@ in { }; "battery" = { - interval = 1; + interval = 3; format-icons = ["󰁻" "󰁽" "󰁿" "󰂁" "󰁹"]; states = { critical = 15; From 60cc8815e3a176ebcf105392b35319dd0e14cf7c Mon Sep 17 00:00:00 2001 From: KoenDR06 Date: Thu, 19 Feb 2026 00:12:30 +0100 Subject: [PATCH 2/3] Add ignore to documents folder --- modules/network/syncthing.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/network/syncthing.nix b/modules/network/syncthing.nix index fb30c75..a70d23a 100644 --- a/modules/network/syncthing.nix +++ b/modules/network/syncthing.nix @@ -52,6 +52,13 @@ in { id = "documentFolder"; path = "/home/${username}/Documents"; devices = ["artemis" "terra" "solis"]; + ignorePatterns = [ + "node_modules" + ".venv" + "venv" + "dist-newstyle" + "constipated-koala/storage" + ]; }; "Programming" = { id = "programmingFolder"; From 7475be67312b3e0a88ecbd43f053a8fcf9a5b4f1 Mon Sep 17 00:00:00 2001 From: KoenDR06 Date: Thu, 19 Feb 2026 00:14:26 +0100 Subject: [PATCH 3/3] container thingies --- machines/solis/modules.nix | 1 + modules/apps/dev/default.nix | 1 + modules/containers/default.nix | 5 ++++- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/machines/solis/modules.nix b/machines/solis/modules.nix index 2eef00c..7d3520a 100644 --- a/machines/solis/modules.nix +++ b/machines/solis/modules.nix @@ -11,6 +11,7 @@ in { containers = { enable = true; backupDir = "/home/${username}/backups"; + interface = "enp2s0"; nginx.enable = true; vaultwarden.enable = true; diff --git a/modules/apps/dev/default.nix b/modules/apps/dev/default.nix index f19e21f..1628d1b 100644 --- a/modules/apps/dev/default.nix +++ b/modules/apps/dev/default.nix @@ -38,6 +38,7 @@ in { sqlitebrowser typst xclip + unityhub uv zed-editor diff --git a/modules/containers/default.nix b/modules/containers/default.nix index 4bc2f02..38005d6 100644 --- a/modules/containers/default.nix +++ b/modules/containers/default.nix @@ -15,6 +15,9 @@ in { options = { horseman.containers = { enable = mkEnableOption "Containers"; + interface = mkOption { + type = types.str; + }; backupDir = mkOption { type = types.str; }; @@ -26,7 +29,7 @@ in { enable = true; # Use "ve-*" when using nftables instead of iptables internalInterfaces = ["ve-+"]; - externalInterface = "enp2s0"; + externalInterface = cfg.interface; # Lazy IPv6 connectivity for the container enableIPv6 = true; };