NixOS-Configs/hosts/wm/sddm/default.nix
2024-12-13 11:50:29 -06:00

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";
};
};
};
}