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

20 lines
334 B
Nix
Raw Normal View History

2021-12-14 05:24:26 +00:00
{ config, lib, pkgs, ... }:
let grpahical = config.graphical;
in {
imports = [
../applications/firefox.nix
2021-12-02 05:05:52 +00:00
../applications/nextcloud.nix
../cli.nix
../fonts.nix
../system/gtk.nix
./minimal.nix
];
2021-11-28 01:10:36 +00:00
2021-12-14 05:24:26 +00:00
graphical.enable = true;
2021-11-28 01:10:36 +00:00
# Enable sound.
sound.enable = true;
hardware.pulseaudio.enable = true;
}