This repository has been archived on 2024-07-10. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles-nix/nix/systems/desktop.nix

28 lines
535 B
Nix
Raw Normal View History

2024-03-24 16:15:15 +01:00
{ config, pkgs, ... }: {
# x11
services.xserver.enable = true;
services.xserver = {
layout = "us";
xkbVariant = "";
};
# xdg portals
2024-04-03 23:26:46 +02:00
xdg.portal.enable = true;
2024-03-24 16:15:15 +01:00
xdg.portal.extraPortals = with pkgs; [
xdg-desktop-portal-wlr
];
# gnome
2024-04-03 23:26:46 +02:00
services.xserver.displayManager.gdm.enable = true;
2024-03-24 16:15:15 +01:00
services.xserver.desktopManager.gnome.enable = true;
# environment variables for hyprland
environment.sessionVariables = {
# hint electron apps to use wayland
NIXOS_OZONE_WL = "1";
};
2024-03-24 16:15:15 +01:00
}