nixos/hosts/thinkpad/home.nix
Michael Thomson 5a9eafc05c
formatting
Signed-off-by: Michael Thomson <michael@michaelthomson.dev>
2024-11-17 21:07:58 -05:00

49 lines
996 B
Nix

{
config,
pkgs,
...
}: {
imports = [
../../modules/home-manager/i3
../../modules/home-manager/ssh
../../modules/home-manager/git
../../modules/home-manager/nixvim
../../modules/home-manager/wezterm
../../modules/home-manager/zsh
../../modules/home-manager/tmux
../../modules/home-manager/taskwarrior
../../modules/home-manager/zoxide
../../modules/home-manager/zathura
../../modules/home-manager/syncthing
../../modules/home-manager/email
];
home.username = "mthomson";
home.homeDirectory = "/home/mthomson";
home.stateVersion = "23.11";
programs = {
direnv = {
enable = true;
enableZshIntegration = true; # see note on other shells below
nix-direnv.enable = true;
};
};
home.packages = with pkgs; [
firefox
gcc
fzf
ripgrep
jq
unzip
pavucontrol
pasystray
networkmanagerapplet
_1password-cli
upower
acpi
];
programs.home-manager.enable = true;
}