diff --git a/home/wayland/default.nix b/home/wayland/default.nix index 4f2c3c1..fae5c12 100644 --- a/home/wayland/default.nix +++ b/home/wayland/default.nix @@ -15,7 +15,7 @@ }; in { imports = [ - ../../modules/greetd.nix + ./greetd.nix ]; environment.systemPackages = with pkgs; [ diff --git a/home/wayland/greetd.nix b/home/wayland/greetd.nix new file mode 100644 index 0000000..3dd2144 --- /dev/null +++ b/home/wayland/greetd.nix @@ -0,0 +1,12 @@ +_: { + services.greetd = { + enable = true; + settings = rec { + initial_session = { + command = "Hyprland"; + user = "notoh"; + }; + default_session = initial_session; + }; + }; +}