config.nix/modules/device/default.nix
2026-04-16 08:01:28 +02:00

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
];
}