This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
nil/modules/profiles/graphical.nix
2021-12-15 00:21:21 -05:00

19 lines
317 B
Nix

{ config, lib, pkgs, ... }:
let grpahical = config.graphical;
in {
imports = [
../applications/firefox.nix
../applications/nextcloud.nix
../cli.nix
../system/gtk.nix
./minimal.nix
];
graphical.enable = true;
# Enable sound.
sound.enable = true;
hardware.pulseaudio.enable = true;
}