nixos-config/modules/system/gnome/default.nix

38 lines
678 B
Nix
Raw Normal View History

2024-09-01 12:22:56 +02:00
{ pkgs, ... }:
{
2024-09-04 12:47:44 +02:00
# Install gnome
2024-09-01 12:22:56 +02:00
services.desktopManager.gnome.enable = true;
services.xserver.enable = false;
2024-09-04 12:47:44 +02:00
# 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
]);
2024-09-01 12:22:56 +02:00
}