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