nixos-config/hm/users/lomig.nix

20 lines
358 B
Nix
Raw Normal View History

2025-09-04 10:21:17 +02:00
{pkgs, ...}: {
imports = [
../common/nvim.nix
2025-09-05 09:59:31 +02:00
../../hm/common/git.nix
2025-09-04 10:21:17 +02:00
../../hm/common/zsh.nix
];
home.stateVersion = "25.05"; # ou ton actuelle
home = {
username = "lomig";
homeDirectory = "/home/lomig";
packages = with pkgs; [
bat
tree
];
};
programs.zsh.enable = true;
}
# vim: set ts=2 sw=2 sts=2 et :