mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
10 lines
202 B
Nix
10 lines
202 B
Nix
{pkgs, ...}: {
|
|
services.displayManager.sddm = {
|
|
enable = true;
|
|
wayland.enable = true;
|
|
extraPackages = with pkgs; [
|
|
sddm-astronaut
|
|
];
|
|
# theme = "sddm-astronaut-theme";
|
|
};
|
|
}
|