18 lines
314 B
Nix
18 lines
314 B
Nix
{ config, lib, pkgs, ... }: {
|
|
imports = [
|
|
../applications/firefox.nix
|
|
../applications/nextcloud.nix
|
|
../system/gtk.nix
|
|
./minimal.nix
|
|
];
|
|
|
|
this = {
|
|
graphical.enable = true;
|
|
system.power.enable = true;
|
|
};
|
|
|
|
# Enable sound.
|
|
sound.enable = true;
|
|
hardware.pulseaudio.enable = true;
|
|
}
|