59 lines
1.4 KiB
Nix
59 lines
1.4 KiB
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "nixpkgs/nixos-22.11";
|
|
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
mms = {
|
|
url = "github:mkaito/nixos-modded-minecraft-servers";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
helix.url = "github:helix-editor/helix";
|
|
};
|
|
outputs = { nixpkgs, home-manager, mms, helix, ... }: {
|
|
colmena = {
|
|
network = {
|
|
description = "Agatha's Nix Infra";
|
|
|
|
nixpkgs = import nixpkgs {
|
|
system = "x86_64-linux";
|
|
overlays = [
|
|
(self: super: { helix = helix.packages.${self.system}.default; })
|
|
];
|
|
};
|
|
};
|
|
|
|
bloodletting = {
|
|
imports = [
|
|
./common
|
|
./hosts/bloodletting/configuration.nix
|
|
(import "${home-manager}/nixos")
|
|
mms.module
|
|
];
|
|
|
|
deployment = {
|
|
targetUser = "root";
|
|
targetHost = "bloodletting";
|
|
|
|
tags = [ "prod" ];
|
|
|
|
keys = {
|
|
"nyandroid-token" = {
|
|
keyCommand = [ "cat" "./secrets/nyandroid-token" ];
|
|
destDir = "/var/lib/secrets/";
|
|
};
|
|
"rfc2136-technogothic-net" = {
|
|
keyCommand = [ "cat" "./secrets/rfc2136-technogothic-net" ];
|
|
destDir = "/var/lib/secrets/";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|