e8086e8528
plugins, new cursor, light/dark themes, new app launcher, ...
32 lines
650 B
Nix
32 lines
650 B
Nix
{ inputs, pkgs, ... }:
|
|
let
|
|
sddm-astronaut-theme = pkgs.callPackage ../../../../pkgs/sddm-astronaut-theme/package.nix { };
|
|
in
|
|
{
|
|
services.xserver = {
|
|
enable = true;
|
|
displayManager = {
|
|
startx.enable = true;
|
|
};
|
|
autoRepeatDelay = 250;
|
|
autoRepeatInterval = 30;
|
|
};
|
|
|
|
services.displayManager.sddm = {
|
|
enable = true;
|
|
wayland.enable = true;
|
|
theme = "sddm-astronaut-theme";
|
|
package = pkgs.kdePackages.sddm;
|
|
extraPackages = with pkgs.kdePackages; [
|
|
qtmultimedia
|
|
qtsvg
|
|
qtvirtualkeyboard
|
|
qt5compat
|
|
];
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
sddm-astronaut-theme
|
|
];
|
|
}
|