feat: create initial home manager modules

This commit is contained in:
2026-03-07 16:24:51 +01:00
parent 0f52308b95
commit 48a68d0130
4 changed files with 158 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
{
config,
lib,
pkgs,
...
}:
{
options = {
shell.enable = lib.mkEnableOption "shell utilities";
};
config = lib.mkIf config.shell.enable {
home.packages = with pkgs; [
starship
fzf
htop
jc
jq
openssl
pv
ripgrep
fd
tmux
];
};
}