From 3bc15acc9d9f76f6e067c046e4f0211a81503a38 Mon Sep 17 00:00:00 2001 From: Sergei Bulavintsev Date: Mon, 18 Nov 2024 14:12:49 +0300 Subject: [PATCH] fix(nix): use correct icons in homepage --- nix/modules/nixos/containers/homepage/default.nix | 4 ++-- nix/systems/x86_64-linux/serverz/default.nix | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/nix/modules/nixos/containers/homepage/default.nix b/nix/modules/nixos/containers/homepage/default.nix index 8f2e71c..9e0aea6 100644 --- a/nix/modules/nixos/containers/homepage/default.nix +++ b/nix/modules/nixos/containers/homepage/default.nix @@ -93,7 +93,7 @@ in { } { "Adguard" = { - icon = "Adguard"; + icon = "adguard-home"; href = "https://adguard.sbulav.ru"; widget = { type = "adguard"; @@ -103,7 +103,7 @@ in { } { "Flood" = { - icon = "Flood"; + icon = "flood"; href = "https://flood.sbulav.ru"; widget = { type = "flood"; diff --git a/nix/systems/x86_64-linux/serverz/default.nix b/nix/systems/x86_64-linux/serverz/default.nix index 68a3e6c..a6e06b1 100644 --- a/nix/systems/x86_64-linux/serverz/default.nix +++ b/nix/systems/x86_64-linux/serverz/default.nix @@ -14,6 +14,7 @@ in { # Enable Bootloader boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; + boot.enableContainers = true; # Suites managed by nix, see suites by home-manager in homes suites.server.enable = true; # Enables the basics, like neovim, ssh, etc. @@ -61,13 +62,13 @@ in { localAddress = "172.16.64.104"; }; flood = { - enable = true; + enable = false; host = "flood.sbulav.ru"; hostAddress = "172.16.64.10"; localAddress = "172.16.64.105"; }; nextcloud = { - enable = false; + enable = true; host = "nextcloud2.sbulav.ru"; hostAddress = "172.16.64.10"; localAddress = "172.16.64.106";