nixos-config/config/kde/default.nix

15 lines
248 B
Nix
Raw Normal View History

2024-11-09 14:02:26 +00:00
{ ... }:
{
2024-11-05 08:11:22 +00:00
services.xserver.enable = true;
services.displayManager.sddm.enable = true;
services.desktopManager.plasma6.enable = true;
imports = [
./i18n.nix
2024-11-05 18:59:42 +00:00
];
home-manager.users.darkkirb.imports = [
./home-manager.nix
2024-11-05 08:11:22 +00:00
];
}