mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 15:15:52 +05:30
24 lines
432 B
Nix
24 lines
432 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [ ./pipewire.nix
|
||
|
./dbus.nix
|
||
|
./gnome-keyring.nix
|
||
|
./fonts.nix
|
||
|
];
|
||
|
|
||
|
environment.systemPackages = [ pkgs.wayland ];
|
||
|
|
||
|
# Configure xwayland
|
||
|
services.xserver = {
|
||
|
enable = true;
|
||
|
layout = "us";
|
||
|
xkbVariant = "";
|
||
|
xkbOptions = "caps:escape";
|
||
|
displayManager.gdm = {
|
||
|
enable = true;
|
||
|
wayland = true;
|
||
|
};
|
||
|
};
|
||
|
}
|