nix-conf/hosts/server/home.nix

21 lines
349 B
Nix
Raw Normal View History

2025-03-23 21:26:40 +01:00
{
pkgs,
inputs,
...
}: {
2025-03-23 21:10:26 +01:00
home.username = "banir";
home.homeDirectory = "/home/banir";
home.stateVersion = "24.11";
programs.home-manager.enable = true;
2025-03-23 21:07:06 +01:00
2025-03-23 21:26:40 +01:00
imports = [
../../modules/cross-platform/home-manager/zsh.nix
inputs.nvf.homeManagerModules.default
];
2025-03-23 21:07:06 +01:00
crony.zsh.enable = true;
programs.starship.enable = true;
}