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