feat: add new host rigel

This commit is contained in:
tux
2025-02-22 21:10:19 +05:30
parent 55e31c03fc
commit 8f99c087bb
6 changed files with 362 additions and 10 deletions

30
hosts/rigel/home.nix Normal file
View File

@ -0,0 +1,30 @@
{pkgs, ...}: {
imports = [
../../modules/home/git
../../modules/home/starship
];
programs = {
bat.enable = true;
zoxide = {
enable = true;
options = ["--cmd cd"];
};
zsh = {
enable = true;
shellAliases = {
ls = "lsd";
};
syntaxHighlighting.enable = true;
autosuggestion.enable = true;
};
};
home.packages = with pkgs; [
neovim
busybox
lsd
];
home.stateVersion = "24.05";
}