nixos-config/config/kde/default.nix

23 lines
419 B
Nix
Raw Permalink Normal View History

2024-11-24 13:59:35 +00:00
{ config, ... }:
2024-11-09 14:02:26 +00:00
{
2024-11-24 13:59:35 +00:00
services.xserver.enable = !config.isSway;
2024-11-19 09:38:08 +00:00
services.displayManager.sddm = {
2024-11-24 13:59:35 +00:00
enable = !config.isSway;
2024-11-19 09:38:08 +00:00
wayland.enable = true;
wayland.compositor = "kwin";
};
2024-11-24 13:59:35 +00:00
services.desktopManager.plasma6.enable = !config.isSway;
2024-11-05 08:11:22 +00:00
imports = [
./i18n.nix
2024-11-05 18:59:42 +00:00
];
2024-11-24 13:59:35 +00:00
home-manager.users.darkkirb.imports =
if !config.isSway then
[
./home-manager.nix
]
else
[ ];
2024-11-05 08:11:22 +00:00
}