nixos/hosts/macbook/home.nix
2024-04-18 12:49:40 -04:00

60 lines
1.1 KiB
Nix

{ config, pkgs, ... }:
{
imports = [
../../modules/home-manager/neovim
../../modules/home-manager/wezterm
../../modules/home-manager/zsh
../../modules/home-manager/tmux
../../modules/home-manager/taskwarrior
../../modules/home-manager/zoxide
../../modules/home-manager/eza
../../modules/home-manager/bat
../../modules/home-manager/irssi
];
home.username = "mthomson";
home.homeDirectory = "/Users/mthomson";
home.stateVersion = "23.11";
home.sessionVariables = {
EDITOR = "nvim";
ZK_NOTEBOOK_DIR = "notes";
};
programs = {
direnv = {
enable = true;
enableZshIntegration = true; # see note on other shells below
nix-direnv.enable = true;
};
};
home.packages = with pkgs; [
btop
spotify
spotify-player
neofetch
jq
fzf
ripgrep
tldr
cowsay
lazygit
k9s
tintin
nb
w3m
lua
kubectl
k9s
kubeseal
fluxcd
wireguard-tools
kompose
inetutils
];
programs.home-manager.enable = true;
programs.git.enable = true;
}