auto activate hyprland

This commit is contained in:
Daylin Morgan 2024-08-07 12:52:51 -05:00
parent 4b181be761
commit b6bbdb51fb
Signed by: daylin
GPG key ID: 950D13E9719334AD

View file

@ -6,6 +6,13 @@
flake,
...
}:
let
activate-snippet = ''
if [ -z "$WAYLAND_DISPLAY" ] && [ "$XDG_VTNR" = 1 ]; then
exec Hyprland
fi
'';
in
mkOizysModule config "hyprland" {
programs.hyprland = enabled;
@ -53,6 +60,16 @@ mkOizysModule config "hyprland" {
# dunst
]);
services.getty = {
extraArgs = [ "--skip-login" ];
loginOptions = "-p -- ${config.oizys.user}";
};
environment.etc = {
"bashrc.local".text = activate-snippet;
"zshenv.local".text = activate-snippet;
};
nixpkgs.overlays = [
(flake.overlay "hyprland-contrib")
# (overlayFrom "nixpkgs-wayland")