2026-02-13 12:48:04 +10:00
|
|
|
{cerulean, ...} @ inputs:
|
|
|
|
|
cerulean.mkNexus ./. (self: {
|
|
|
|
|
nexus = {
|
|
|
|
|
specialArgs = {inherit inputs;};
|
|
|
|
|
|
|
|
|
|
groups = {
|
|
|
|
|
# wait.. that's too cold...
|
|
|
|
|
cryos = {
|
|
|
|
|
# oh frick i cried again
|
|
|
|
|
cryde = {};
|
|
|
|
|
};
|
|
|
|
|
# <funny-joke-here/>
|
|
|
|
|
server = {};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
nodes = let
|
|
|
|
|
inherit
|
|
|
|
|
(self.nexus)
|
|
|
|
|
groups
|
|
|
|
|
;
|
|
|
|
|
in {
|
|
|
|
|
# my laptop <3 :3
|
|
|
|
|
lolcathost = {
|
|
|
|
|
system = "x86_64-linux";
|
|
|
|
|
groups = [groups.cryos.cryde];
|
|
|
|
|
extraModules = with inputs; [
|
|
|
|
|
grub2-themes.nixosModules.default
|
|
|
|
|
nix-flatpak.nixosModules.nix-flatpak
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# i be on my puter frfr
|
|
|
|
|
myputer = {
|
|
|
|
|
system = "x86_64-linux";
|
|
|
|
|
groups = [groups.cryos.cryde];
|
|
|
|
|
extraModules = with inputs; [
|
|
|
|
|
grub2-themes.nixosModules.default
|
|
|
|
|
nix-flatpak.nixosModules.nix-flatpak
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# courtesy of aurora <3
|
|
|
|
|
butterfly = {
|
|
|
|
|
system = "x86_64-linux";
|
|
|
|
|
groups = [groups.server];
|
2026-02-16 09:35:29 +10:00
|
|
|
deploy.ssh = {
|
|
|
|
|
host = "dobutterfliescry.net";
|
|
|
|
|
user = "cry";
|
|
|
|
|
port = 42069;
|
|
|
|
|
};
|
2026-02-13 12:48:04 +10:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# pls dont sue me im broke
|
|
|
|
|
hyrule = {
|
|
|
|
|
system = "x86_64-linux";
|
|
|
|
|
groups = [groups.server];
|
2026-02-16 09:35:29 +10:00
|
|
|
deploy.ssh = {
|
|
|
|
|
host = "hyrule.dobutterfliescry.net";
|
|
|
|
|
user = "cry";
|
|
|
|
|
};
|
2026-02-13 12:48:04 +10:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# call me a statistician the way she spreads in my sheets
|
|
|
|
|
# matcha = {
|
|
|
|
|
# system = "x86_64-linux";
|
|
|
|
|
# groups = [groups.server];
|
|
|
|
|
# deploy.ssh.host = "bedroom.dobutterfliescry.net";
|
|
|
|
|
# };
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
})
|