17 lines
309 B
Nix
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
|
|
];
|
|
};
|
|
};
|
|
}
|
|
|