nixos-configs/nixosModules/base/default-droid.nix
matt1432 fd1ae4fa32
All checks were successful
Discord / discord commits (push) Has been skipped
fix(droid): get build to work again
2024-11-23 04:53:02 -05:00

22 lines
358 B
Nix

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