Moved tmux theming from nvim module to tmux module

This commit is contained in:
alejandro-angulo 2024-07-28 23:23:20 -07:00
parent 2ad5af4f90
commit a656b8f481
Signed by: alejandro-angulo
GPG key ID: 75579581C74554B6
5 changed files with 13 additions and 25 deletions

View file

@ -1,19 +1,19 @@
{
options,
config,
pkgs,
lib,
inputs,
namespace,
...
}:
with lib; let
cfg = config.aa.home;
}: let
inherit (lib) mkAliasDefinitions mkOption;
inherit (lib.types) attrs;
in {
imports = with inputs; [
home-manager.nixosModules.home-manager
];
options.aa.home = with types; {
options.${namespace}.home = {
file = mkOption {
type = attrs;
default = {};
@ -37,7 +37,7 @@ in {
};
config = {
aa.home.extraOptions = {
${namespace}.home.extraOptions = {
home.stateVersion = config.system.stateVersion;
home.file = mkAliasDefinitions options.aa.home.file;
xdg = {