nix-config/modules/greetd.nix
Donovan Glover 62207c05fa
chore: Formatting
Also removes redundant comments.
2023-06-26 18:38:45 -04:00

21 lines
363 B
Nix

{ pkgs, ... }:
{
services.greetd = {
enable = true;
restart = false;
settings = {
default_session = {
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --cmd Hyprland";
user = "greeter";
};
initial_session = {
command = "${pkgs.hyprland}/bin/Hyprland";
user = "user";
};
};
};
}