22 lines
303 B
Nix
22 lines
303 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
options = {
|
|
device.type = lib.mkOption {
|
|
default = "minimal";
|
|
description = "device type (desktop, laptop, server, minimal) for base config";
|
|
};
|
|
};
|
|
|
|
imports = [
|
|
./minimal.nix
|
|
./desktop.nix
|
|
./laptop.nix
|
|
./server.nix
|
|
];
|
|
}
|