mirror of
https://github.com/callumio/nixfiles.git
synced 2026-08-06 20:49:17 +01:00
10 lines
159 B
Nix
10 lines
159 B
Nix
{ ... }:
|
|
{
|
|
flake.nixosModules.keys =
|
|
{ lib, ... }:
|
|
{
|
|
options.keys = lib.mkOption {
|
|
default = import ../lib/keys.nix;
|
|
};
|
|
};
|
|
}
|