nixos/hosts/android/home.nix
2025-05-27 10:42:35 -04:00

37 lines
837 B
Nix

{ config, lib, pkgs, ... }:
{
# Read the changelog before changing this value
home.stateVersion = "24.05";
# insert home-manager config
imports = [
../../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";
};
};
};
};
}