11 lines
301 B
Nix
11 lines
301 B
Nix
{ config, pkgs, lib, ... }:
|
|
{
|
|
services.xserver.desktopManager.gnome.enable = true;
|
|
environment.systemPackages = with pkgs; [
|
|
gnomeExtensions.appindicator
|
|
gnome.adwaita-icon-theme
|
|
];
|
|
services.udev.packages = with pkgs; [ gnome.gnome-settings-daemon ];
|
|
programs.dconf.enable = true;
|
|
}
|