11 lines
170 B
Nix
11 lines
170 B
Nix
{ lib, ... }:
|
|
{
|
|
options.assets = lib.mkOption {
|
|
type = lib.types.unspecified;
|
|
readOnly = true;
|
|
};
|
|
|
|
config.assets = {
|
|
sshKeys = import ./ssh.nix;
|
|
};
|
|
}
|