Files
nixos-config/hosts/common/features/x11.nix
T
Miguel Palhas dbbb887a82 wip
2025-04-24 22:27:13 +01:00

20 lines
274 B
Nix

{ inputs, pkgs, ... }:
{
services.xserver = {
enable = true;
displayManager = {
defaultSession = "none+i3";
};
windowManager.i3.enable = true;
layout = "us";
xkbVariant = "";
};
xdg = {
portal = {
enable = true;
};
};
}