integrated hyprland into systemd

This commit is contained in:
Rouven Seifert 2023-02-21 12:24:34 +01:00
parent 2bb4bc7e38
commit adc6afca11
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
7 changed files with 51 additions and 12 deletions

View file

@ -0,0 +1,11 @@
{ config, pkgs, ...}:
{
services.greetd = {
enable = true;
settings = {
default_session = {
command = "${pkgs.greetd.greetd}/bin/agreety --cmd Hyprland";
};
};
};
}