From aefcbcfde192d59e059f629aa0a9f32b70710166 Mon Sep 17 00:00:00 2001 From: albert Date: Mon, 29 Jul 2024 10:51:38 +0900 Subject: [PATCH] Update Plasma and Konsole --- .../common/desktops/plasma6/plasma-manager.nix | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/home-manager/common/desktops/plasma6/plasma-manager.nix b/home-manager/common/desktops/plasma6/plasma-manager.nix index 4577a535..21e1ff80 100644 --- a/home-manager/common/desktops/plasma6/plasma-manager.nix +++ b/home-manager/common/desktops/plasma6/plasma-manager.nix @@ -1,11 +1,15 @@ { theme, ... }: { programs.konsole = { - defaultProfile = "Default"; - profiles.Default = { - name = "Default"; - font = { - name = "Jetbrains Mono NF"; + enable = true; + defaultProfile = "default"; + profiles.default = { + name = "default"; + colorScheme = "Breeze"; + extraConfig = { + Appearance = { + Font = "JetBrainsMono NF,10,-1,5,800,0,0,0,0,0,0,0,0,0,0,1,Regular"; + }; }; }; };