mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 00:01:58 +01:00
21 lines
366 B
Nix
21 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;
|
|
};
|
|
};
|
|
}
|