From d93eca8d09eca564e9c5474e16ba7e7dea49ec98 Mon Sep 17 00:00:00 2001 From: William Date: Wed, 2 Jul 2025 16:26:15 -0300 Subject: [PATCH] some changes to radicale; remove stylix mention for root user --- hosts/modules/alexandria/services.nix | 4 ++-- users/modules/default.nix | 1 - users/modules/stylix.nix | 5 ----- 3 files changed, 2 insertions(+), 8 deletions(-) delete mode 100644 users/modules/stylix.nix diff --git a/hosts/modules/alexandria/services.nix b/hosts/modules/alexandria/services.nix index 0f8303d..e2e5533 100644 --- a/hosts/modules/alexandria/services.nix +++ b/hosts/modules/alexandria/services.nix @@ -67,8 +67,8 @@ in settings = { server = { hosts = [ - "127.0.0.1:5232" - "[::]:5232" + "127.0.0.1:${ports.radicale}" + "[::]:${ports.radicale}" ]; }; auth = { diff --git a/users/modules/default.nix b/users/modules/default.nix index 0f3fd3b..5ef9e0a 100644 --- a/users/modules/default.nix +++ b/users/modules/default.nix @@ -3,6 +3,5 @@ { imports = [ ./programs.nix - ./stylix.nix ]; } diff --git a/users/modules/stylix.nix b/users/modules/stylix.nix deleted file mode 100644 index 56a36f6..0000000 --- a/users/modules/stylix.nix +++ /dev/null @@ -1,5 +0,0 @@ -{ - stylix.targets = { - blender.enable = false; - }; -}