mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 18:00:33 +01:00
11 lines
187 B
Nix
11 lines
187 B
Nix
|
{lib, ...}: {
|
||
|
options.os = lib.mkOption {
|
||
|
type = lib.types.str;
|
||
|
default = "linux";
|
||
|
};
|
||
|
options.arch = lib.mkOption {
|
||
|
type = lib.types.str;
|
||
|
default = "x86_64";
|
||
|
};
|
||
|
}
|