This commit is contained in:
2024-04-23 20:17:17 -04:00
parent 1de852f23c
commit 17004f6b46
4 changed files with 203 additions and 0 deletions

32
hosts/thinkpad/home.nix Normal file
View File

@@ -0,0 +1,32 @@
{ config, pkgs, ... }:
{
imports = [
../../modules/home-manager/i3
../../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 = "/home/mthomson";
home.stateVersion = "23.11";
home.packages = with pkgs; [
firefox
_1password-gui
gcc
fzf
ripgrep
jq
unzip
];
programs.home-manager.enable = true;
programs.git.enable = true;
}