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

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

    # TODO: We should be able to add "intel" driver?
    videoDrivers = ["fbdev"];
  };

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