Files
dotfiles/modules/display.nix

28 lines
700 B
Nix

{ ... }: {
programs.hyprland.enable = true;
# Optional, hint electron apps to use wayland:
# environment.sessionVariables.NIXOS_OZONE_WL = "1";
# # Enable the KDE Plasma Desktop Environment.
# services.displayManager.sddm.enable = true;
# services.desktopManager.plasma6.enable = true;
# services.displayManager.sddm.settings = {
# Autologin = {
# Session = "plasma.desktop";
# User = "kyren";
# };
# };
#
# Enable the X11 windowing system.
# You can disable this if you're only using the Wayland session.
# services.xserver.enable = true;
#
# Configure keymap in X11
# services.xserver.xkb = {
# layout = "us";
# variant = "";
# };
}