This commit is contained in:
Lennart J. Kurzweg (Nx2)
2024-05-29 22:17:48 +02:00
parent 82b8e81e92
commit 7e07ae4bc8
3 changed files with 20 additions and 4 deletions

View File

@@ -1,17 +1,16 @@
{ config, pkgs, ... }:
{ lib, pkgs, host, ... }:
{
environment.systemPackages = with pkgs; [
sddm
where-is-my-sddm-theme
# where-is-my-sddm-theme
];
services.xserver = {
displayManager = {
defaultSession = "hyprland";
sddm = {
enable = true;
theme = "where_is_my_sddm_theme";
# theme = "where_is_my_sddm_theme";
settings = {
theme = {
# background = /home/nx2/Pictures/
@@ -20,6 +19,10 @@
};
};
};
autoLogin = lib.mkIf (host == "NxACE") {
enable = true;
user = "tv";
};
};
};
}