nix-community / plasma-manager

Manage KDE Plasma with Home Manager
https://nix-community.github.io/plasma-manager/
MIT License
594 stars 69 forks source link

programs.konsole.defaultProfile not working as expected #113

Closed arvigeus closed 5 months ago

arvigeus commented 5 months ago
  programs.konsole = {
    enable = true;

    defaultProfile = "default";
    profiles.default = {
      name = "default";
      font = {
        name = "FiraCode Nerd Font Mono";
      };
    };
  };

Expectations: Set default profile to "default".
Reality: I have to set programs.konsole.defaultProfile = "default.profile" instead to make it work.

magnouvean commented 5 months ago

You're right I didn't even think about that. I agree we shouldn't have to add .profile to defaultProfile manually. I'll fix this soon :)