21 lines
395 B
Nix
21 lines
395 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
# enable sddm and use astronaut theme
|
|
services.displayManager.sddm = {
|
|
enable = true;
|
|
wayland.enable = true;
|
|
autoNumlock = true;
|
|
enableHidpi = true;
|
|
theme = "sddm-astronaut-theme";
|
|
settings = {
|
|
Theme = {
|
|
Current = "sddm-astronaut-theme";
|
|
};
|
|
};
|
|
extraPackages = with pkgs; [
|
|
sddm-astronaut
|
|
];
|
|
};
|
|
}
|