19 lines
331 B
Nix
19 lines
331 B
Nix
|
{ pkgs, lib, ... }:
|
||
|
with lib;
|
||
|
{
|
||
|
options.components.terminal = {
|
||
|
enable = lib.mkEnableOption "Terminal configurations";
|
||
|
};
|
||
|
|
||
|
imports = [
|
||
|
./direnv.nix
|
||
|
./hoard.nix
|
||
|
./remote-install.nix
|
||
|
./wtf.nix
|
||
|
];
|
||
|
|
||
|
config = mkIf config.components.terminal.enable {
|
||
|
# todo extract xorg stuff to prepare wayland
|
||
|
};
|
||
|
}
|