feat(nix/host/orion): autologin price to DE
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 1m2s

This commit is contained in:
Price Hiller 2024-06-04 02:56:43 -05:00
parent 2737b13d17
commit f259419945
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -1,8 +1,16 @@
{ pkgs, ... }:
{
services.displayManager.sddm = {
wayland.enable = true;
enable = true;
services.displayManager = {
autoLogin = {
enable = true;
user = "price";
};
defaultSession = "hyprland";
sddm = {
wayland.enable = true;
enable = true;
autoLogin.relogin = true;
};
};
programs.hyprland = {
enable = true;