mirror of
https://github.com/inexcode/nixos-config.git
synced 2025-02-18 15:24:38 +00:00
32 lines
547 B
Nix
32 lines
547 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Enable the GNOME Desktop Environment.
|
|
services.xserver = {
|
|
displayManager = {
|
|
gdm = {
|
|
enable = true;
|
|
wayland = true;
|
|
autoSuspend = false;
|
|
};
|
|
};
|
|
desktopManager = {
|
|
gnome3.enable = true;
|
|
kodi.enable = true;
|
|
};
|
|
};
|
|
|
|
|
|
qt5.platformTheme = "gnome";
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
gnome3.pomodoro
|
|
gnome3.gnome-tweaks
|
|
gnome3.networkmanager-openvpn
|
|
gnome3.evolution
|
|
gnomeExtensions.gsconnect
|
|
paper-icon-theme
|
|
];
|
|
}
|
|
|