29 lines
597 B
Nix
Executable File
29 lines
597 B
Nix
Executable File
{ lib, pkgs, host, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
sddm
|
|
# where-is-my-sddm-theme
|
|
];
|
|
services.xserver = {
|
|
displayManager = {
|
|
defaultSession = "hyprland";
|
|
sddm = {
|
|
enable = true;
|
|
# theme = "where_is_my_sddm_theme";
|
|
settings = {
|
|
theme = {
|
|
# background = /home/nx2/Pictures/
|
|
passwordFontSize = 12;
|
|
passwordInputCursorVisible = true;
|
|
};
|
|
};
|
|
};
|
|
autoLogin = lib.mkIf (host == "NxACE") {
|
|
enable = true;
|
|
user = "tv";
|
|
};
|
|
};
|
|
};
|
|
}
|