From e46ae02037a631bf00aea8675208ecd0819ab9dd Mon Sep 17 00:00:00 2001 From: Aleksandr Lebedev Date: Thu, 17 Apr 2025 11:48:43 +0200 Subject: [PATCH] Removed old conduwuit reference --- nixos/hosts/kylekrein-homepc/default.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/nixos/hosts/kylekrein-homepc/default.nix b/nixos/hosts/kylekrein-homepc/default.nix index 9ab6a40..b46fe7c 100644 --- a/nixos/hosts/kylekrein-homepc/default.nix +++ b/nixos/hosts/kylekrein-homepc/default.nix @@ -9,7 +9,6 @@ ... }: { imports = [ - "${inputs.nixpkgs-unstable}/nixos/modules/services/matrix/conduwuit.nix" ../../hardware/nvidia ../../modules/hyprland @@ -25,8 +24,6 @@ ../../users/tania ]; -options.services.conduwuit.settings.global.database_path = lib.mkOption { apply = old: "/persist/conduwuit/";}; -config = { sops.secrets."ssh_keys/${hwconfig.hostname}" = {}; environment.systemPackages = with pkgs; [ blender @@ -105,5 +102,4 @@ config = { }; systemd.network.wait-online.enable = lib.mkForce false; -}; }