35 lines
599 B
Nix
35 lines
599 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
services.gnome = {
|
||
|
tracker-miners.enable = false;
|
||
|
tracker.enable = false;
|
||
|
};
|
||
|
|
||
|
environment.gnome.excludePackages = with pkgs.gnome; [
|
||
|
baobab
|
||
|
epiphany
|
||
|
gnome-calendar
|
||
|
gnome-clocks
|
||
|
pkgs.gnome-console
|
||
|
gnome-contacts
|
||
|
gnome-logs
|
||
|
gnome-maps
|
||
|
gnome-music
|
||
|
pkgs.gnome-tour
|
||
|
pkgs.gnome-photos
|
||
|
gnome-weather
|
||
|
pkgs.gnome-connections
|
||
|
simple-scan
|
||
|
yelp
|
||
|
];
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
evolution
|
||
|
gnome.gnome-terminal
|
||
|
gnome.gnome-tweaks
|
||
|
];
|
||
|
|
||
|
services.gnome.evolution-data-server.enable = true;
|
||
|
}
|