Signed-off-by: Harald Hoyer <harald@hoyer.xyz>
This commit is contained in:
Harald Hoyer 2024-01-11 13:42:31 +01:00
parent 45d6f4b0f3
commit 1281c57892
191 changed files with 755 additions and 7893 deletions

View file

@ -8,10 +8,10 @@
}:
{
home = {
username = "harald";
homeDirectory = "/home/${config.home.username}/nix";
stateVersion = "23.11"; # Please read the comment before changing.
sessionPath = [ "$HOME/bin" ];
username = "harald";
homeDirectory = "/home/${config.home.username}/nix";
stateVersion = "23.11"; # Please read the comment before changing.
sessionPath = [ "$HOME/bin" ];
};
plusultra = {

View file

@ -0,0 +1,36 @@
{ lib
, pkgs
, config
, nixpkgs
, osConfig ? { }
, format ? "unknown"
, ...
}:
{
home = {
username = "harald";
homeDirectory = "/home/${config.home.username}";
stateVersion = "23.11"; # Please read the comment before changing.
sessionPath = [ "$HOME/bin" ];
};
plusultra = {
cli-apps = {
bash.enable = true;
fish.enable = true;
neovim.enable = true;
tmux.enable = true;
bat.enable = true;
git.enable = true;
starship.enable = true;
home-manager.enable = true;
};
tools = {
direnv.enable = true;
# jetbrains.enable = true;
};
};
fonts.fontconfig.enable = true;
}