nixos/modules/apps/01_tui_advance.nix
2025-06-20 11:59:24 -07:00

17 lines
309 B
Nix

# advanced tui apps beyond the scope of basic headless
{ config, ... }: {
imports = [ ./00_tui_base.nix ];
config = {
home-manager.users.${config.user} = { pkgs, ... }: {
home.packages = with pkgs; [
tealdeer
gocryptfs
pciutils
usbutils
];
};
};
}