Talk:KDE: Difference between revisions
imported>AmnesiaAmesia m Answer question and added signatures |
No edit summary |
||
Line 29: | Line 29: | ||
--[[User:AmnesiaAmesia|AmnesiaAmesia]] ([[User talk:AmnesiaAmesia|talk]]) 21:03, 7 June 2023 (UTC) | --[[User:AmnesiaAmesia|AmnesiaAmesia]] ([[User talk:AmnesiaAmesia|talk]]) 21:03, 7 June 2023 (UTC) | ||
---- | |||
How do I get audio/network taskbar addons working in plasma 6? | |||
---- | |||
You add this, | |||
<syntaxHighlight lang=nix> | |||
environment = { | |||
systemPackages = with pkgs; [ | |||
kdePackages.plasma-pa # Pipewire can act like pa through services.pipewire.pulse.enable | |||
kdePackages.plasma-nm | |||
]; | |||
}; | |||
</syntaxHighlight> | |||
---- |
Revision as of 19:54, 24 June 2024
The "oxygen-gtk" package mentioned here doesn't seem to exist? https://github.com/NixOS/nixpkgs/search?q=oxygen-gtk&unscoped_q=oxygen-gtk Apparently deleted in https://github.com/NixOS/nixpkgs/commit/f344817a3ece8284826fe6852e80c161644f340b
________________________
this is just confusing. 3 ways to do sth. and no reasons given.
How do I install KDE apps? For example, Ark?
You add this to your configuration.nix
environment.systemPackages = [
pkgs.libsForQt5.ark
];
--AmnesiaAmesia (talk) 21:03, 7 June 2023 (UTC)
I’ve updated the example on how to exclude packages as a response to the warning it produced in NixOS 23, but maybe it would’ve been better to have separate sections for the different NixOS versions? Or is there another way to indicate the difference? And how do I know what version this change was introduced in?
--AmnesiaAmesia (talk) 21:03, 7 June 2023 (UTC)
How do I get audio/network taskbar addons working in plasma 6?
You add this,
environment = {
systemPackages = with pkgs; [
kdePackages.plasma-pa # Pipewire can act like pa through services.pipewire.pulse.enable
kdePackages.plasma-nm
];
};