nixos-configs/modules/base/default-droid.nix

23 lines
358 B
Nix
Raw Normal View History

2024-11-23 04:53:02 -05:00
self: {lib, ...}: let
inherit (lib) mkOption types;
in {
imports = [
(import ./common-nix self)
(import ./packages self)
];
options.roles.base = {
enable = mkOption {
type = types.bool;
default = true;
};
user = mkOption {
type = types.str;
};
};
# For accurate stack trace
_file = ./default.nix;
}