nixcfg/homes/x86_64-linux/harald@sgx-azure/default.nix

33 lines
590 B
Nix
Raw Normal View History

2024-01-11 09:18:07 +01:00
{ lib
, pkgs
, config
, nixpkgs
, ...
}:
{
2024-01-11 11:26:46 +01:00
home = {
username = "harald";
homeDirectory = "/home/${config.home.username}/nix";
stateVersion = "23.11"; # Please read the comment before changing.
sessionPath = [ "$HOME/bin" ];
2024-01-11 09:18:07 +01:00
};
2024-01-11 11:26:46 +01:00
plusultra = {
cli-apps = {
bash.enable = true;
fish.enable = true;
neovim.enable = true;
tmux.enable = true;
bat.enable = true;
starship.enable = true;
home-manager.enable = true;
2024-01-11 09:18:07 +01:00
};
2024-01-11 11:26:46 +01:00
tools = {
git.enable = true;
2024-01-11 11:26:46 +01:00
direnv.enable = true;
ssh.enable = true;
2024-01-11 09:18:07 +01:00
};
};
}