Files
dotfiles/nix/users/luca/home.nix
rocketcamel 9b9ca64fc6 zsh additions + qol changes (#1)
* flake changes

* hm enable by default, omp home-manager

* zsh plugins
2025-02-03 00:26:06 -08:00

23 lines
401 B
Nix

{ config, pkgs, ... }:
{
home.username = "luca";
home.homeDirectory = "/home/luca";
programs = {
git = import ./git.nix;
zsh = import ./zsh.nix { inherit pkgs; };
tmux = import ./tmux.nix { inherit pkgs; };
oh-my-posh = import ./omp.nix;
};
home.packages = with pkgs; [
nodejs_22
pnpm
];
home.stateVersion = "24.11";
programs.home-manager.enable = true;
}