nix-conf/hosts/server/home.nix

14 lines
283 B
Nix
Raw Normal View History

{pkgs, ...}: {
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:08:14 +01:00
imports = [../../modules/cross-platform/home-manager/zsh.nix];
2025-03-23 21:07:06 +01:00
crony.zsh.enable = true;
programs.starship.enable = true;
}