13 lines
220 B
Nix
13 lines
220 B
Nix
{ config, lib, pkgs, ... }: {
|
|
imports = [ ./minimal.nix ];
|
|
|
|
this = {
|
|
graphical.enable = true;
|
|
system.power.enable = true;
|
|
};
|
|
|
|
# Enable sound.
|
|
sound.enable = true;
|
|
hardware.pulseaudio.enable = true;
|
|
}
|