nixos-configs/modules/sddm-wayland.nix

28 lines
601 B
Nix

{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
dracula-theme
];
services.xserver = {
enable = true;
layout = "ca";
displayManager = {
sddm = {
enable = true;
settings = {
General = {
DisplayServer = "wayland";
InputMethod = "";
};
Wayland.CompositorCommand = "${pkgs.weston}/bin/weston --shell=fullscreen-shell.so";
Theme = {
Current = "Dracula";
CursorTheme = "Dracula-cursors";
CursorSize = 24;
};
};
};
};
};
}