mirror of
https://github.com/inexcode/nixos-config.git
synced 2024-11-27 16:31:27 +00:00
28 lines
470 B
Nix
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
|
||
|
];
|
||
|
}
|