nixos-config/system/desktop/x11.nix

20 lines
272 B
Nix
Raw Normal View History

2019-10-24 02:20:38 +02:00
{ config, pkgs, lib, ... }:
{
environment.systemPackages = with pkgs; [
xclip
xtrlock-pam
xorg.xev
];
system.custom.x11 = {
enable = true;
autoLoginUser = config.users.users.mainUser.name;
};
system.custom.fonts.enable = true;
}