17 lines
352 B
Nix
17 lines
352 B
Nix
{ options, config, lib, pkgs, ... }:
|
|
with lib;
|
|
with lib.custom;
|
|
let
|
|
cfg = config.modules.desktop.term;
|
|
in {
|
|
options.modules.desktop.term = {
|
|
default = mkOpt types.str "xterm";
|
|
};
|
|
|
|
config = {
|
|
services.xserver.desktopManager.xterm.enable = mkDefault (cfg.default == "xterm");
|
|
|
|
env.TERMINAL = cfg.default;
|
|
};
|
|
}
|