nixos-configs/modules/base/default-droid.nix
matt1432 6ca0d7248b
All checks were successful
Discord / discord commits (push) Has been skipped
refactor: rename some flake attr directories
2024-12-16 15:51:41 -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;
}