nixos-config/modules/system/gnome/default.nix
Mohamed C. 1639264bd5
Some checks are pending
Flake.lock / build (push) Waiting to run
switch to gnome
2024-09-04 12:47:44 +02:00

38 lines
678 B
Nix

{ pkgs, ... }:
{
# Install gnome
services.desktopManager.gnome.enable = true;
services.xserver.enable = false;
# Install Applications
programs.file-roller.enable = true;
services.gnome.tracker.enable = true;
environment.systemPackages = with pkgs; [
gnome-text-editor
];
# Install Extensions
environment.systemPackages = with pkgs; [
gnomeExtensions.appindicator
];
# Don't install unneeded applications
environment.gnome.excludePackages = (with pkgs; [
gnome-photos
gnome-tour
]) ++ (with pkgs.gnome; [
gnome-music
gnome-terminal
gedit
epiphany
geary
evince
gnome-characters
totem
tali
iagno
hitori
atomix
]);
}