26 lines
427 B
Nix
26 lines
427 B
Nix
{ 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/ssh
|
|
./modules/git
|
|
./modules/fish
|
|
./modules/atuin
|
|
./modules/wezterm
|
|
./modules/nvim
|
|
./modules/lazygit
|
|
];
|
|
|
|
programs.home-manager.enable = true;
|
|
}
|