nixos/hosts/plasma.nix

19 lines
407 B
Nix
Raw Normal View History

{ 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 = ""; }; };
};
};
}