mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 00:33:00 +00:00
26 lines
600 B
Nix
26 lines
600 B
Nix
{pkgs, ...}: {
|
|
services.desktopManager.gnome = {
|
|
enable = true;
|
|
sessionPath = with pkgs; [
|
|
gtop
|
|
gnome-menus
|
|
gobject-introspection
|
|
# Copyous
|
|
libgda6
|
|
gsound
|
|
];
|
|
};
|
|
environment.systemPackages = with pkgs; [
|
|
gnome-menus
|
|
gobject-introspection
|
|
];
|
|
environment.gnome.excludePackages = with pkgs; [
|
|
evince # Document Viewer (Legacy)
|
|
totem # GNOME Videos (legacy)
|
|
papers # Document Viewer
|
|
gnome-tour
|
|
baobab # Disk Usage Analyzer, use dust instead
|
|
epiphany # GNOME Web
|
|
gnome-system-monitor # use mission-center
|
|
];
|
|
}
|