summaryrefslogtreecommitdiff
path: root/common/services/greetd.nix
blob: 2a59cbcdd1319e277de05edc550bdf27376182af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ pkgs, ... }:
{
	enable = true;
	settings = {
		initial_session = {
			command = "${pkgs.hyprland}/bin/Hyprland";
			user = "n8";
		};
		default_session = {
			command = "${pkgs.greetd.tuigreet}/bin/tuigreet --greeting 'Welcome to NixOS!' --asterisks --remember --remember-user-session --time --cmd ${pkgs.hyprland}/bin/Hyprland";
			user = "greeter";
		};
	};
}