Converted tmux from nixosModule to homeModule

This commit is contained in:
Alejandro Angulo 2024-07-28 19:46:30 -07:00
parent 27b8ea6ab3
commit fe55849333
Signed by: alejandro-angulo
GPG key ID: 75579581C74554B6
6 changed files with 133 additions and 125 deletions

View file

@ -1,14 +1,13 @@
{
options,
config,
lib,
pkgs,
...
}:
with lib; let
}: let
inherit (lib) mkIf mkEnableOption;
cfg = config.aa.suites.development;
in {
options.aa.suites.development = with lib.types; {
options.aa.suites.development = {
enable = mkEnableOption "common configuration";
};
@ -24,7 +23,6 @@ in {
apps = {
neovim.enable = true;
tmux.enable = true;
};
};