mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
18 lines
238 B
Nix
18 lines
238 B
Nix
|
{ lib, ... }:
|
||
|
with lib.types;
|
||
|
{
|
||
|
options.sconfig.morph = {
|
||
|
|
||
|
sshPublicKeys = lib.mkOption {
|
||
|
type = listOf str;
|
||
|
default = [ ];
|
||
|
};
|
||
|
|
||
|
deployment = lib.mkOption {
|
||
|
type = attrs;
|
||
|
default = { };
|
||
|
};
|
||
|
|
||
|
};
|
||
|
}
|