infrastructure/nixos/hosts/olympus/bastion/home.nix
Vivian 3dfe40e4e2
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
apply deadnix
2023-05-04 13:06:08 +02:00

17 lines
324 B
Nix

_: {
programs.home-manager.enable = true;
home.username = "victor";
home.homeDirectory = "/home/victor";
home.stateVersion = "22.05";
programs.direnv = {
enable = true;
nix-direnv = { enable = true; };
};
programs.zsh = {
enable = true;
sessionVariables = { DIRENV_LOG_FORMAT = ""; };
};
}