diff --git a/hosts/default/configuration.nix b/hosts/default/configuration.nix index d9127bf..80035ec 100644 --- a/hosts/default/configuration.nix +++ b/hosts/default/configuration.nix @@ -71,7 +71,10 @@ LC_TIME = "en_US.UTF-8"; }; - services.xserver.displayManager.lightdm.enable = true; + services.xserver.displayManager.gdm = { + enable = true; + wayland = true; + }; programs.zsh.enable = true; diff --git a/modules/home-manager/ricing/hyprland/default.nix b/modules/home-manager/ricing/hyprland/default.nix index 99415cb..fb4eedf 100644 --- a/modules/home-manager/ricing/hyprland/default.nix +++ b/modules/home-manager/ricing/hyprland/default.nix @@ -3,5 +3,18 @@ { wayland.windowManager.hyprland = { enable = true; + + settings = { + monitor = [ + "eDP-1, preferred, auto-right, 1" + "HDMI-A-2, preferred, auto-left, 1" + ]; + + "$mod" = "SUPER"; + bind = [ + "$mod, F, exec, firefox" + "$mod, T, exec, kitty" + ]; + }; }; } \ No newline at end of file