nixos-configs/devices/bbsteamie/modules/desktop/default.nix
matt1432 8aa6f5b2b0
All checks were successful
Discord / discord commits (push) Has been skipped
fix(bbsteamie): use plasma wayland without annoying popups
2024-08-04 18:44:53 -04:00

31 lines
597 B
Nix

{pkgs, ...}: let
# switch to wayland when possible
defaultSession = "plasma";
in {
imports = [
(import ./session-switching.nix defaultSession)
(import ./steam.nix defaultSession)
];
services.desktopManager.plasma6.enable = true;
programs = {
kdeconnect.enable = true;
xwayland.enable = true;
};
# Flatpak support for Discover
services.flatpak.enable = true;
services.packagekit.enable = true;
environment.systemPackages = with pkgs; [
# Misc Apps
firefox
kdePackages.discover
kdePackages.krfb
# Libs
wl-clipboard
xclip
];
}