blob: ce9e3bd14bf73c4bbea556ce59152deec5915f3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# 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;
# };
}
|