From 6a62e2f23fb4c5756261f6021ec3a2e01b355036 Mon Sep 17 00:00:00 2001 From: Till Date: Tue, 20 Jan 2026 00:16:33 +0100 Subject: [PATCH] ssh, calendars --- home/calendars.nix | 4 ++-- home/ssh.nix | 1 + system/desktop.nix | 5 ++++- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/home/calendars.nix b/home/calendars.nix index 01a61ea..e645f50 100644 --- a/home/calendars.nix +++ b/home/calendars.nix @@ -3,7 +3,7 @@ let myRemote = slug: { - passwordCommand = [ "secret-tool" "lookup" "server" "kalender.ktiu.net" "account" "ktiu" ]; + passwordCommand = [ "pass" "ktiu/radicale" ]; userName = "ktiu"; type = "caldav"; url = "https://kalender.ktiu.net/ktiu/${slug}"; @@ -127,7 +127,7 @@ in remote = { type = "caldav"; url = "https://cloud.gridisnotajournal.de/remote.php/dav/calendars/till/grid/"; - passwordCommand = [ "secret-tool" "lookup" "server" "cloud.gridisnotajournal.de" "account" "till" ]; + passwordCommand = [ "pass" "grid/nextcloud" ]; userName = "till"; }; }; diff --git a/home/ssh.nix b/home/ssh.nix index bbcbfa3..181ccca 100644 --- a/home/ssh.nix +++ b/home/ssh.nix @@ -4,6 +4,7 @@ programs.ssh = { enable = true; + enableDefaultConfig = false; matchBlocks = { diff --git a/system/desktop.nix b/system/desktop.nix index cffb32b..739ab74 100644 --- a/system/desktop.nix +++ b/system/desktop.nix @@ -9,7 +9,10 @@ boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; - networking.networkmanager.enable = true; + networking.networkmanager = { + enable = true; + plugins = with pkgs; [ networkmanager-openvpn ]; + }; i18n.extraLocaleSettings = { LC_TIME = "en_GB.UTF-8";