From c65787890ffd2afb32c0443e851998a1c782ddfc Mon Sep 17 00:00:00 2001 From: Michael Thomson Date: Tue, 27 May 2025 10:42:35 -0400 Subject: [PATCH] update android --- hosts/android/home.nix | 20 +++++++++++++++++++- modules/home-manager/nixcats/default.nix | 2 +- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/hosts/android/home.nix b/hosts/android/home.nix index 285b1b2..7607499 100644 --- a/hosts/android/home.nix +++ b/hosts/android/home.nix @@ -6,13 +6,31 @@ # insert home-manager config imports = [ - ../../modules/home-manager/nixvim.nix + ../../modules/home-manager/nixcats ../../modules/home-manager/zsh.nix ../../modules/home-manager/git.nix ../../modules/home-manager/tmux.nix ../../modules/home-manager/bitwarden.nix ../../modules/home-manager/kubernetes.nix ../../modules/home-manager/email.nix + ../../modules/home-manager/direnv.nix + ../../modules/home-manager/taskwarrior.nix + ../../modules/home-manager/stylix.nix ../../modules/home-manager/emacs ]; + + home.sessionVariables = { + ZK_NOTEBOOK_DIR = "\${HOME}/zk"; + }; + + programs = { + zk = { + enable = true; + settings = { + notebook = { + dir = "~/zk"; + }; + }; + }; + }; } diff --git a/modules/home-manager/nixcats/default.nix b/modules/home-manager/nixcats/default.nix index b6ce832..f25e528 100644 --- a/modules/home-manager/nixcats/default.nix +++ b/modules/home-manager/nixcats/default.nix @@ -144,7 +144,7 @@ in { # unwrappedCfgPath = "/path/to/here"; # IMPORTANT: # your alias may not conflict with your other packages. - aliases = [ "vim" "homeVim" ]; + # aliases = [ "vim" "homeVim" ]; # neovim-unwrapped = inputs.neovim-nightly-overlay.packages.${pkgs.system}.neovim; hosts.python3.enable = true; hosts.node.enable = true;