14 lines
260 B
Nix
14 lines
260 B
Nix
{pkgs, ...}: {
|
|
environment.systemPackages = with pkgs; [sddm-chili-theme];
|
|
|
|
services.displayManager = {
|
|
sddm = {
|
|
enable = true;
|
|
theme = "chili";
|
|
wayland = {
|
|
enable = true;
|
|
compositor = "weston";
|
|
};
|
|
};
|
|
};
|
|
}
|