mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 08:14:00 +01:00
ed11061d61
This was the only way I could get plugins to work reliably. Might look into this in the future, but v0.27.2 also includes some changes not present in v0.27.0.
21 lines
401 B
Nix
21 lines
401 B
Nix
{ pkgs, hyprland, ... }:
|
|
|
|
{
|
|
services.greetd = {
|
|
enable = true;
|
|
restart = false;
|
|
|
|
settings = {
|
|
default_session = {
|
|
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --cmd Hyprland";
|
|
user = "greeter";
|
|
};
|
|
|
|
initial_session = {
|
|
command = "${hyprland.packages.${pkgs.system}.hyprland}/bin/Hyprland";
|
|
user = "user";
|
|
};
|
|
};
|
|
};
|
|
}
|