dots/modules/linux/login.nix

17 lines
340 B
Nix

{ config, lib, pkgs, ... }:
{
# display manager
services.greetd = {
enable = true;
settings = {
initial_session = {
command = "uwsm start default";
user = "nico";
};
default_session = {
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --greet-align left";
};
};
};
}