nixos-config/system/desktop/x11.nix

14 lines
250 B
Nix
Raw Normal View History

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