added home-manager to bastion

This commit is contained in:
Vivian 2022-10-18 17:20:14 +02:00
parent f11f5ecada
commit 2f348356bc
3 changed files with 21 additions and 1 deletions

View file

@ -0,0 +1,16 @@
{ config, pkgs, lib, ... }: {
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 = ""; };
};
}