profiles: init (vsock ssh &c.)

This commit is contained in:
Else, Someone 2025-09-17 16:51:24 +03:00
parent 12e95630b1
commit 1828835a1d
8 changed files with 228 additions and 0 deletions

5
profiles/all.nix Normal file
View file

@ -0,0 +1,5 @@
{
imports = builtins.concatMap (name: if name == "all.nix" then [ ] else [ (./. + "/${name}") ]) (
builtins.attrNames (builtins.readDir ./.)
);
}