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