gitea repo

This commit is contained in:
fred 2025-06-20 11:59:24 -07:00
commit f610209aff
66 changed files with 2439 additions and 0 deletions

View file

@ -0,0 +1,17 @@
# 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
];
};
};
}