summaryrefslogtreecommitdiff
path: root/hosts/omar/desktop-environment/default.nix
blob: 52800e02b4cb63b4061d36874d8cb611035fdaca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# This module configures a desktop environment specific to this host.
{
  imports = [
    ./window-manager.nix
    ./input.nix
  ];

  # Enable the X11 windowing system.
  services.xserver.enable = true;

  # Enable sound.
  # hardware.pulseaudio.enable = true;
  # OR
  # services.pipewire = {
  #   enable = true;
  #   pulse.enable = true;
  # };
}