Adds config for new work mac

This commit is contained in:
Dennis Schoepf 2025-05-08 21:19:10 +02:00
parent b5ebffd469
commit 48ea1e8876
4 changed files with 293 additions and 1 deletions

25
home/darwin-work.nix Normal file
View file

@ -0,0 +1,25 @@
{ config, pkgs, ... }:
{
home.username = "dennis";
home.homeDirectory = "/Users/dennis";
home.stateVersion = "24.11";
home.sessionVariables = {
EDITOR = "nvim";
GOPATH = "$HOME/go";
};
xdg.enable = true;
imports = [
./modules/git
./modules/fish/work
./modules/atuin
./modules/wezterm
./modules/nvim
./modules/lazygit
];
programs.home-manager.enable = true;
}