mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-23 01:42:17 +00:00
18 lines
No EOL
344 B
Nix
18 lines
No EOL
344 B
Nix
{ pkgs, ... }: {
|
|
services.greetd = {
|
|
enable = true;
|
|
settings = {
|
|
default_session.command = ''
|
|
${pkgs.greetd.tuigreet}/bin/tuigreet \
|
|
--time \
|
|
--asterisks \
|
|
--user-menu \
|
|
--cmd Hyprland
|
|
'';
|
|
};
|
|
};
|
|
|
|
environment.etc."greetd/environments".text = ''
|
|
Hyprland
|
|
'';
|
|
} |