mirror of
https://github.com/youwen5/nixos.git
synced 2025-01-18 05:02:10 -08:00
27 lines
438 B
Nix
27 lines
438 B
Nix
{ lib, ... }:
|
|
{
|
|
imports = [
|
|
./audio
|
|
./audio-prod
|
|
./core
|
|
./desktop-environment
|
|
./distrobox
|
|
./flatpak
|
|
./gaming
|
|
./greeter
|
|
./misc
|
|
./networking
|
|
./stylix
|
|
./wine
|
|
./wsl
|
|
./graphics
|
|
];
|
|
|
|
options.liminalOS.enable = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = true;
|
|
description = ''
|
|
Whether to enable liminalOS's default modules and options for Linux.
|
|
'';
|
|
};
|
|
}
|