nixos/hosts/plasma.nix
2023-08-18 12:19:52 +01:00

19 lines
407 B
Nix

{ pkgs, ... }: {
imports = [ ./desktop.nix ];
environment.systemPackages = with pkgs;
with libsForQt5; [
lightly
kwindowsystem
krdc
];
services.xserver = {
enable = true;
desktopManager.plasma5.enable = true;
displayManager.sddm = {
enable = true;
# theme = "catppuccin-macchiato";
settings = { General = { InputMethod = ""; }; };
};
};
}