34 lines
522 B
Nix
34 lines
522 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
home.username = "dennis";
|
|
home.homeDirectory = "/Users/dennis";
|
|
home.stateVersion = "24.11";
|
|
|
|
home.sessionVariables = {
|
|
EDITOR = "nvim";
|
|
GOPATH = "$HOME/go";
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
yt-dlp
|
|
fnm
|
|
devenv
|
|
zellij
|
|
zellij-switch
|
|
];
|
|
|
|
xdg.enable = true;
|
|
|
|
imports = [
|
|
../modules/ssh
|
|
../modules/git
|
|
../modules/zoxide
|
|
../modules/fish
|
|
../modules/nvim
|
|
../modules/ghostty
|
|
../modules/zellij
|
|
];
|
|
|
|
programs.home-manager.enable = true;
|
|
}
|