mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 08:06:50 +01:00
22 lines
366 B
Nix
22 lines
366 B
Nix
|
|
{lib, ...}: let
|
||
|
|
inherit (lib) mkOption types;
|
||
|
|
in {
|
||
|
|
options.defaults = {
|
||
|
|
terminal = mkOption {
|
||
|
|
type = types.nullOr types.str;
|
||
|
|
};
|
||
|
|
|
||
|
|
fileManager = mkOption {
|
||
|
|
type = types.nullOr types.str;
|
||
|
|
};
|
||
|
|
|
||
|
|
browser = mkOption {
|
||
|
|
type = types.nullOr types.str;
|
||
|
|
};
|
||
|
|
|
||
|
|
editor = mkOption {
|
||
|
|
type = types.nullOr types.str;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|