mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-13 10:00:52 -06:00
25 lines
564 B
Nix
25 lines
564 B
Nix
{
|
|
flake,
|
|
pkgs,
|
|
labHelpers,
|
|
...
|
|
}:
|
|
let
|
|
inherit (import ./config { inherit flake pkgs; }) mastodonVM;
|
|
inherit (flake.config.people) user0;
|
|
inherit (flake.config.services) instances;
|
|
|
|
interface0Cfg = instances.mastodon.interfaces.interface0;
|
|
|
|
mastodonNick = mastodonVM {
|
|
user = user0;
|
|
ip = interface0Cfg.microvm.ip;
|
|
mac = interface0Cfg.microvm.mac;
|
|
userMac = interface0Cfg.microvm.macUser;
|
|
ssh = interface0Cfg.microvm.ssh;
|
|
mnt = "";
|
|
host = interface0Cfg.domain;
|
|
};
|
|
in
|
|
mastodonNick
|
|
# // mastodonStacie // mastodonGarnet
|