nix-config/modules/default/nixos/desktop/autostart.nix
2025-02-09 16:49:24 +01:00

18 lines
336 B
Nix

{ lib, config, ... }:
lib.mkIf config.desktop.autologin.enable {
security.pam.services.hyprlock = { };
services.greetd = {
enable = true;
settings = rec {
initial_session = {
command = config.desktop.windowManager;
user = "willifan";
};
default_session = initial_session;
};
};
}