dots/modules/linux/login.nix
Nico 33b5e45327 nix: replace sddm with greetd
enables autologin
display manager is ttygreet
2025-05-03 16:34:34 +10:00

16 lines
345 B
Nix

{ config, lib, pkgs, ... }:
{
services.greetd = {
enable = true;
settings = {
initial_session = {
command = "${pkgs.hyprland}/bin/Hyprland";
user = "nico";
};
default_session = {
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --asterisks --time --greeting 'nyaaa~~'";
};
};
};
}