mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 00:33:00 +00:00
12 lines
219 B
Nix
12 lines
219 B
Nix
{ pkgs, ... }:
|
|
{
|
|
services.desktopManager.gnome.enable = true;
|
|
environment.systemPackages = with pkgs; [
|
|
gnome-menus
|
|
];
|
|
environment.gnome.excludePackages = with pkgs; [
|
|
evince
|
|
totem
|
|
papers
|
|
];
|
|
}
|