nixos/modules/apps/01_tui_advance.nix

18 lines
309 B
Nix
Raw Normal View History

2025-06-20 11:59:24 -07:00
# 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
];
};
};
}