Evie Litherland-Smith
10a44cbc2d
Move collection expressions from hosts/ into services/ as importable modules Remove service/hostname.nix collections Remove all imports from host/ expressions and include as modules in flake.nix Set sensible defaults that propagate to (I think) everything
21 lines
465 B
Nix
21 lines
465 B
Nix
{ pkgs, ... }: {
|
|
imports = [ ./desktop.nix ];
|
|
environment.systemPackages = with pkgs;
|
|
with libsForQt5; [
|
|
plasma-wayland-protocols
|
|
plasma-integration
|
|
plasma-browser-integration
|
|
plasma-thunderbolt
|
|
kwin-tiling
|
|
krdc
|
|
];
|
|
services.xserver = {
|
|
enable = true;
|
|
desktopManager.plasma5.enable = true;
|
|
displayManager.sddm = {
|
|
enable = true;
|
|
settings = { General = { InputMethod = ""; }; };
|
|
};
|
|
};
|
|
}
|