- Redid the flake module to be based on extendModules instead - Added wrappers - Refactored code - Updated dependencies
9 lines
147 B
Nix
9 lines
147 B
Nix
{lib, ...}: {
|
|
options.assets = lib.mkOption {
|
|
type = lib.types.unspecified;
|
|
};
|
|
|
|
config.assets = {
|
|
sshKeys = import ./ssh.nix;
|
|
};
|
|
}
|