nix-git/modules/gnome-base.nix

56 lines
1.8 KiB
Nix
Raw Normal View History

2023-09-14 11:53:32 +02:00
{ config, pkgs, ... }:
{
2023-10-09 12:13:36 +02:00
# Don't install all programs of the GNOME desktop.
# https://nixos.wiki/wiki/GNOME#Excluding_some_GNOME_applications_from_the_default_install
environment.gnome.excludePackages = (with pkgs; [
2023-10-09 12:45:19 +02:00
baobab # Disk usage analyzer
gnome-connections # Remote desktop client (VNC, RDP)
gnome.gnome-logs # Systemd journal log viewer
2023-10-09 12:13:36 +02:00
gnome-photos
2023-10-09 12:45:19 +02:00
gnome-tour # Introduction to GNOME
2023-10-09 12:13:36 +02:00
gnome-console # Can't be configured with Home-Manager as of 2023-10.
gnome.cheese # Webcam viewer
gnome.gnome-music # Music player
gnome.epiphany # Web browser
gnome.geary # Email
2023-11-18 11:52:59 +01:00
#gnome.gnome-characters # Emoji keyboard
#gnome.gnome-contacts # Address book
2023-10-09 12:45:19 +02:00
gnome.gnome-font-viewer # View and install fonts
2023-10-09 12:13:36 +02:00
]);
2023-09-14 11:53:32 +02:00
# Enable the X11 windowing system.
services.xserver.enable = true;
# Enable the GNOME Desktop Environment.
services.xserver.displayManager.gdm.enable = true;
# Toggles, weather the Wayland or X11 GNOME session is started.
2023-10-19 14:28:40 +02:00
services.xserver.displayManager.gdm.wayland = true;
2023-09-14 11:53:32 +02:00
services.xserver.desktopManager.gnome.enable = true;
# Configure keymap in X11.
services.xserver = {
layout = "de";
xkbVariant = "nodeadkeys";
};
# Enable sound with pipewire.
sound.enable = true;
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
# If you want to use JACK applications, uncomment this.
#jack.enable = true;
# Use the example session manager (no others are packaged yet so this is enabled by default,
# no need to redefine it in your config for now)
#media-session.enable = true;
};
# Enable touchpad support (enabled default in most desktopManager).
# services.xserver.libinput.enable = true;
}