nixos-config/modules/nixos/profiles/desktop/default.nix
Gabriel Arazas 3cafa9f613
nixos/suites/desktop: modularize submodules into dedicated profiles
It's practically enabled every time so why not set them as profiles instead.
The structure should be enough for some control over what is enabled.
2024-01-25 18:52:07 +08:00

11 lines
244 B
Nix

# A common profile for desktop systems. Most of the configurations featured
# here should be enough in common to the typical desktop setups found on
# non-NixOS systems.
{
imports = [
./fonts.nix
./audio.nix
./hardware.nix
];
}