60 lines
1.4 KiB
Nix
60 lines
1.4 KiB
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../../modules/home-manager/git.nix
|
|
../../modules/home-manager/nixcats
|
|
../../modules/home-manager/emacs
|
|
../../modules/home-manager/kitty.nix
|
|
../../modules/home-manager/zsh.nix
|
|
../../modules/home-manager/tmux.nix
|
|
../../modules/home-manager/email.nix
|
|
../../modules/home-manager/password-store
|
|
../../modules/home-manager/taskwarrior.nix
|
|
../../modules/home-manager/kubernetes.nix
|
|
../../modules/home-manager/nix-index.nix
|
|
../../modules/home-manager/bitwarden.nix
|
|
../../modules/home-manager/latex.nix
|
|
../../modules/home-manager/jq.nix
|
|
../../modules/home-manager/lazygit.nix
|
|
../../modules/home-manager/man.nix
|
|
../../modules/home-manager/direnv.nix
|
|
../../modules/home-manager/spotify-player.nix
|
|
../../modules/home-manager/nb.nix
|
|
../../modules/home-manager/stylix.nix
|
|
];
|
|
home.username = "mthomson";
|
|
home.homeDirectory = "/Users/mthomson";
|
|
home.stateVersion = "23.11";
|
|
|
|
home.sessionVariables = {
|
|
ZK_NOTEBOOK_DIR = "\${HOME}/zk";
|
|
};
|
|
|
|
programs = {
|
|
zk = {
|
|
enable = true;
|
|
settings = {
|
|
notebook = {
|
|
dir = "~/zk";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
taskwarrior-tui
|
|
hidden-bar
|
|
presenterm
|
|
(azure-cli.withExtensions [
|
|
azure-cli.extensions.containerapp
|
|
])
|
|
azure-functions-core-tools
|
|
dotnet-sdk
|
|
];
|
|
|
|
programs.home-manager.enable = true;
|
|
}
|