wayland: add greetd

This commit is contained in:
notohh 2024-01-22 03:48:37 -05:00
parent e7ba648e1c
commit 49f9b1504a
Signed by: notohh
GPG key ID: BD47506D475EE86D
2 changed files with 13 additions and 1 deletions

View file

@ -15,7 +15,7 @@
};
in {
imports = [
../../modules/greetd.nix
./greetd.nix
];
environment.systemPackages = with pkgs; [

12
home/wayland/greetd.nix Normal file
View file

@ -0,0 +1,12 @@
_: {
services.greetd = {
enable = true;
settings = rec {
initial_session = {
command = "Hyprland";
user = "notoh";
};
default_session = initial_session;
};
};
}