nixos-config/hm/users/lomig.nix

21 lines
378 B
Nix
Raw Normal View History

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