1
1
Fork 0
mirror of https://git.sr.ht/~rouven/nixos-config synced 2025-06-05 17:18:47 +02:00

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
hosts/thinkpad/modules/greetd

View file

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