NixOS-Configs/hosts/wm/sddm/default.nix
2024-06-30 09:47:45 -05:00

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