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