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"; + }; }; }; };