1
0
Fork 0
mirror of https://github.com/inexcode/nixos-config.git synced 2024-11-23 15:01:26 +00:00
nixos-config/Laptop/modules/gnome.nix
2019-12-25 14:19:09 +03:00

28 lines
470 B
Nix

{ config, pkgs, ... }:
{
# Enable the GNOME Desktop Environment.
services.xserver = {
displayManager = {
gdm = {
enable = true;
wayland = true;
};
};
desktopManager = {
gnome3.enable = true;
};
};
qt5.platformTheme = "gnome";
environment.systemPackages = with pkgs; [
gnome3.pomodoro
gnome3.gnome-tweaks
gnome3.networkmanager-openvpn
gnomeExtensions.gsconnect
paper-icon-theme
];
}