colmena: configuration
This commit is contained in:
parent
96c2a36d14
commit
dd227a92dc
2 changed files with 29 additions and 0 deletions
|
@ -5,5 +5,6 @@ pkgs.mkShell {
|
||||||
|
|
||||||
packages = [
|
packages = [
|
||||||
agenix.packages.x86_64-linux.default
|
agenix.packages.x86_64-linux.default
|
||||||
|
pkgs.colmena
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
28
flake.nix
28
flake.nix
|
@ -38,6 +38,34 @@
|
||||||
systems = [ "x86_64-linux" ];
|
systems = [ "x86_64-linux" ];
|
||||||
|
|
||||||
flake = with nixpkgs.lib; {
|
flake = with nixpkgs.lib; {
|
||||||
|
colmena = {
|
||||||
|
meta = {
|
||||||
|
nixpkgs = import nixpkgs {
|
||||||
|
system = "x86_64-linux";
|
||||||
|
overlays = [ ];
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
jitsi = {
|
||||||
|
deployment = {
|
||||||
|
targetHost = "jitsi.pub.infra.auro.re";
|
||||||
|
targetPort = 22;
|
||||||
|
targetUser = "root";
|
||||||
|
tags = [ "services" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
imports = [
|
||||||
|
./profiles/common
|
||||||
|
agenix.nixosModules.default
|
||||||
|
disko.nixosModules.disko
|
||||||
|
./profiles/vm
|
||||||
|
./disks/layout_vm.nix
|
||||||
|
./hosts/vm/jitsi
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
nixosConfigurations =
|
nixosConfigurations =
|
||||||
let
|
let
|
||||||
defaultConfig = [
|
defaultConfig = [
|
||||||
|
|
Loading…
Reference in a new issue