wm | config sddm

This commit is contained in:
Don Harper 2024-04-27 15:01:42 -05:00
parent a85f202eb4
commit 162f6ea6f3

12
hosts/wm/sddm/default.nix Normal file
View file

@ -0,0 +1,12 @@
{ pkgs, ... }:
{
services.xserver.displayManager = {
sddm = {
enable = true;
wayland = {
enable = true;
compositor = "weston";
};
};
};
}