current
 1{
 2  inputs,
 3  config,
 4  den,
 5  ...
 6}: let
 7  inherit (den.lib) __findFile;
 8in {
 9  #############################################################
10  #
11  #  Mobius - NixOS running on Topfell DeskOne T2
12  #  My first homelab server, with Ryzen 7 H 255 + 16GB memory.
13  #
14  #############################################################
15  den.hosts.x86_64-linux.mobius = {
16    usage = "server";
17    pubkey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMesHdI8FLpEPr6KG7t50+d+jKntmtAKvPT9amqdPaaz root@mobius";
18    hashedPasswordAged = ./hashed-password.age;
19    sshPorts = [21632];
20    authorizedKeys = [
21      "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFMKaGC2I3an4AJDeWzVx5vhm63+kxi6zJNdh7yEp6CK hpcesia@kevin"
22      "sk-ssh-ed25519@openssh.com AAAAGnNrLXNzaC1lZDI1NTE5QG9wZW5zc2guY29tAAAAIH6wZFUEv9pSV+MgzqZRJ08WwJvL5FRMhayp73kCnDckAAAABHNzaDo= me@hpcesia.com"
23    ];
24    tailscaleIpv4 = "100.64.0.2";
25    tailscaleIpv6 = "fd7a:115c:a1e0::2";
26    users.hpcesia.classes = ["homeManager"];
27    instantiate = {modules}:
28      inputs.nixpkgs.lib.nixosSystem {
29        inherit modules;
30
31        # Fix vaultix error: attribute 'inputs' missing
32        # This is an anti-pattern of Dendritic Pattern
33        # I don't like this, but I don't see another way
34        specialArgs = {inherit (inputs) self;};
35      };
36  };
37
38  den.aspects.mobius.includes = [
39    # I can physically access Mobius,
40    # so I want a full featured console for emergency access.
41    <desktop/fonts>
42    <desktop/kmscon>
43  ];
44
45  den.aspects.mobius.provides.to-users.includes = [
46    <desktop/no-stylix> # Mobius is not desktop
47  ];
48}