back to plasma we go

This commit is contained in:
William 2026-03-26 07:50:31 -03:00
parent b80e1e3945
commit 02716c72f3
4 changed files with 50 additions and 24 deletions

44
aspects/desktop/kde.nix Normal file
View file

@ -0,0 +1,44 @@
{ ... }:
{
flake.modules = {
nixos.kde =
{ pkgs, ... }:
{
services = {
displayManager = {
autoLogin = {
enable = true;
user = "user";
};
plasma-login-manager.enable = true;
};
desktopManager.plasma6.enable = true;
pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
jack.enable = true;
wireplumber.enable = true;
};
};
xdg.portal = {
enable = true;
xdgOpenUsePortal = true;
extraPortals = with pkgs; [
kdePackages.xdg-desktop-portal-kde
xdg-desktop-portal-gtk
xdg-desktop-portal-gnome
];
config.common.default = "*";
};
programs.kdeconnect.enable = true;
};
homeManager.kde =
{ pkgs, ... }:
{
};
};
}