NixOS-Configs/hosts/wm/sddm/default.nix
2024-04-27 22:08:11 -05:00

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