forked from fediversity/fediversity
Compare commits
10 commits
48c6a1f22b
...
f50a2d1968
Author | SHA1 | Date | |
---|---|---|---|
f50a2d1968 | |||
aef414ffe8 | |||
6d74112518 | |||
2b2fb059fd | |||
66ceb66382 | |||
ad9c61a3db | |||
b4e1c5b5b3 | |||
de38611572 | |||
1d40dcfc0e | |||
c3bf158130 |
43 changed files with 530 additions and 387 deletions
24
.forgejo/workflows/cd.yaml
Normal file
24
.forgejo/workflows/cd.yaml
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
name: deploy-infra
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch: # allows manual triggering
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
# - main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
deploy:
|
||||||
|
runs-on: native
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Set up SSH key to access age secrets
|
||||||
|
run: |
|
||||||
|
env
|
||||||
|
mkdir -p ~/.ssh
|
||||||
|
echo "${{ secrets.CD_SSH_KEY }}" > ~/.ssh/id_ed25519
|
||||||
|
chmod 600 ~/.ssh/id_ed25519
|
||||||
|
|
||||||
|
- name: Deploy
|
||||||
|
run: nix-shell --run 'nixops4 apply default'
|
|
@ -31,7 +31,7 @@ jobs:
|
||||||
runs-on: native
|
runs-on: native
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- run: nix-build panel -A tests
|
- run: nix-build -A tests.panel
|
||||||
|
|
||||||
check-deployment-basic:
|
check-deployment-basic:
|
||||||
runs-on: native
|
runs-on: native
|
||||||
|
|
|
@ -12,6 +12,7 @@ let
|
||||||
inherit (pkgs) lib;
|
inherit (pkgs) lib;
|
||||||
inherit (import sources.flake-inputs) import-flake;
|
inherit (import sources.flake-inputs) import-flake;
|
||||||
inherit ((import-flake { src = ./.; }).inputs) nixops4;
|
inherit ((import-flake { src = ./.; }).inputs) nixops4;
|
||||||
|
panel = import ./panel { inherit sources system; };
|
||||||
pre-commit-check =
|
pre-commit-check =
|
||||||
(import "${git-hooks}/nix" {
|
(import "${git-hooks}/nix" {
|
||||||
inherit nixpkgs system;
|
inherit nixpkgs system;
|
||||||
|
@ -71,6 +72,7 @@ in
|
||||||
|
|
||||||
tests = {
|
tests = {
|
||||||
inherit pre-commit-check;
|
inherit pre-commit-check;
|
||||||
|
panel = panel.tests;
|
||||||
};
|
};
|
||||||
|
|
||||||
# re-export inputs so they can be overridden granularly
|
# re-export inputs so they can be overridden granularly
|
||||||
|
|
8
deployment/check/basic/constants.nix
Normal file
8
deployment/check/basic/constants.nix
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
targetMachines = [
|
||||||
|
"hello"
|
||||||
|
"cowsay"
|
||||||
|
];
|
||||||
|
pathToRoot = ../../..;
|
||||||
|
pathFromRoot = ./.;
|
||||||
|
}
|
14
deployment/check/basic/default.nix
Normal file
14
deployment/check/basic/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
runNixOSTest,
|
||||||
|
inputs,
|
||||||
|
sources,
|
||||||
|
}:
|
||||||
|
|
||||||
|
runNixOSTest {
|
||||||
|
imports = [
|
||||||
|
../common/nixosTest.nix
|
||||||
|
./nixosTest.nix
|
||||||
|
];
|
||||||
|
_module.args = { inherit inputs sources; };
|
||||||
|
inherit (import ./constants.nix) targetMachines pathToRoot pathFromRoot;
|
||||||
|
}
|
36
deployment/check/basic/deployment.nix
Normal file
36
deployment/check/basic/deployment.nix
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
inputs,
|
||||||
|
sources,
|
||||||
|
lib,
|
||||||
|
providers,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
inherit (import ./constants.nix) targetMachines pathToRoot pathFromRoot;
|
||||||
|
in
|
||||||
|
|
||||||
|
{
|
||||||
|
providers = {
|
||||||
|
inherit (inputs.nixops4.modules.nixops4Provider) local;
|
||||||
|
};
|
||||||
|
|
||||||
|
resources = lib.genAttrs targetMachines (nodeName: {
|
||||||
|
type = providers.local.exec;
|
||||||
|
|
||||||
|
imports = [
|
||||||
|
inputs.nixops4-nixos.modules.nixops4Resource.nixos
|
||||||
|
../common/targetResource.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
_module.args = { inherit inputs sources; };
|
||||||
|
|
||||||
|
inherit nodeName pathToRoot pathFromRoot;
|
||||||
|
|
||||||
|
nixos.module =
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
environment.systemPackages = [ pkgs.${nodeName} ];
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
|
@ -1,57 +0,0 @@
|
||||||
{
|
|
||||||
self,
|
|
||||||
inputs,
|
|
||||||
lib,
|
|
||||||
sources,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
|
|
||||||
let
|
|
||||||
inherit (lib) genAttrs;
|
|
||||||
|
|
||||||
targetMachines = [
|
|
||||||
"hello"
|
|
||||||
"cowsay"
|
|
||||||
];
|
|
||||||
pathToRoot = /. + (builtins.unsafeDiscardStringContext self);
|
|
||||||
pathFromRoot = ./.;
|
|
||||||
|
|
||||||
in
|
|
||||||
{
|
|
||||||
_class = "flake";
|
|
||||||
|
|
||||||
perSystem =
|
|
||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
checks.deployment-basic = pkgs.testers.runNixOSTest {
|
|
||||||
imports = [
|
|
||||||
../common/nixosTest.nix
|
|
||||||
./nixosTest.nix
|
|
||||||
];
|
|
||||||
_module.args = { inherit inputs sources; };
|
|
||||||
inherit targetMachines pathToRoot pathFromRoot;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
nixops4Deployments.check-deployment-basic =
|
|
||||||
{ providers, ... }:
|
|
||||||
{
|
|
||||||
providers = {
|
|
||||||
inherit (inputs.nixops4.modules.nixops4Provider) local;
|
|
||||||
};
|
|
||||||
resources = genAttrs targetMachines (nodeName: {
|
|
||||||
type = providers.local.exec;
|
|
||||||
imports = [
|
|
||||||
inputs.nixops4-nixos.modules.nixops4Resource.nixos
|
|
||||||
../common/targetResource.nix
|
|
||||||
];
|
|
||||||
_module.args = { inherit inputs sources; };
|
|
||||||
inherit nodeName pathToRoot pathFromRoot;
|
|
||||||
nixos.module =
|
|
||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
environment.systemPackages = [ pkgs.${nodeName} ];
|
|
||||||
};
|
|
||||||
});
|
|
||||||
};
|
|
||||||
}
|
|
22
deployment/check/basic/flake-under-test.nix
Normal file
22
deployment/check/basic/flake-under-test.nix
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{
|
||||||
|
inputs = {
|
||||||
|
nixops4.follows = "nixops4-nixos/nixops4";
|
||||||
|
nixops4-nixos.url = "github:nixops4/nixops4-nixos";
|
||||||
|
};
|
||||||
|
|
||||||
|
outputs =
|
||||||
|
inputs:
|
||||||
|
import ./mkFlake.nix inputs (
|
||||||
|
{ inputs, sources, ... }:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
inputs.nixops4.modules.flake.default
|
||||||
|
];
|
||||||
|
|
||||||
|
nixops4Deployments.check-deployment-basic = {
|
||||||
|
imports = [ ./deployment/check/basic/deployment.nix ];
|
||||||
|
_module.args = { inherit inputs sources; };
|
||||||
|
};
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
|
@ -1,10 +1,15 @@
|
||||||
{ inputs, ... }:
|
{ inputs, lib, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
_class = "nixosTest";
|
_class = "nixosTest";
|
||||||
|
|
||||||
name = "deployment-basic";
|
name = "deployment-basic";
|
||||||
|
|
||||||
|
sourceFileset = lib.fileset.unions [
|
||||||
|
./constants.nix
|
||||||
|
./deployment.nix
|
||||||
|
];
|
||||||
|
|
||||||
nodes.deployer =
|
nodes.deployer =
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
|
|
11
deployment/check/cli/constants.nix
Normal file
11
deployment/check/cli/constants.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
targetMachines = [
|
||||||
|
"garage"
|
||||||
|
"mastodon"
|
||||||
|
"peertube"
|
||||||
|
"pixelfed"
|
||||||
|
];
|
||||||
|
pathToRoot = ../../..;
|
||||||
|
pathFromRoot = ./.;
|
||||||
|
enableAcme = true;
|
||||||
|
}
|
19
deployment/check/cli/default.nix
Normal file
19
deployment/check/cli/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
runNixOSTest,
|
||||||
|
inputs,
|
||||||
|
sources,
|
||||||
|
}:
|
||||||
|
|
||||||
|
runNixOSTest {
|
||||||
|
imports = [
|
||||||
|
../common/nixosTest.nix
|
||||||
|
./nixosTest.nix
|
||||||
|
];
|
||||||
|
_module.args = { inherit inputs sources; };
|
||||||
|
inherit (import ./constants.nix)
|
||||||
|
targetMachines
|
||||||
|
pathToRoot
|
||||||
|
pathFromRoot
|
||||||
|
enableAcme
|
||||||
|
;
|
||||||
|
}
|
59
deployment/check/cli/deployments.nix
Normal file
59
deployment/check/cli/deployments.nix
Normal file
|
@ -0,0 +1,59 @@
|
||||||
|
{
|
||||||
|
inputs,
|
||||||
|
sources,
|
||||||
|
lib,
|
||||||
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
inherit (builtins) fromJSON readFile listToAttrs;
|
||||||
|
inherit (import ./constants.nix)
|
||||||
|
targetMachines
|
||||||
|
pathToRoot
|
||||||
|
pathFromRoot
|
||||||
|
enableAcme
|
||||||
|
;
|
||||||
|
|
||||||
|
makeTargetResource = nodeName: {
|
||||||
|
imports = [ ../common/targetResource.nix ];
|
||||||
|
_module.args = { inherit inputs sources; };
|
||||||
|
inherit
|
||||||
|
nodeName
|
||||||
|
pathToRoot
|
||||||
|
pathFromRoot
|
||||||
|
enableAcme
|
||||||
|
;
|
||||||
|
};
|
||||||
|
|
||||||
|
## The deployment function - what we are here to test!
|
||||||
|
##
|
||||||
|
## TODO: Modularise `deployment/default.nix` to get rid of the nested
|
||||||
|
## function calls.
|
||||||
|
makeTestDeployment =
|
||||||
|
args:
|
||||||
|
(import ../..)
|
||||||
|
{
|
||||||
|
inherit lib;
|
||||||
|
inherit (inputs) nixops4 nixops4-nixos;
|
||||||
|
fediversity = import ../../../services/fediversity;
|
||||||
|
}
|
||||||
|
(listToAttrs (
|
||||||
|
map (nodeName: {
|
||||||
|
name = "${nodeName}ConfigurationResource";
|
||||||
|
value = makeTargetResource nodeName;
|
||||||
|
}) targetMachines
|
||||||
|
))
|
||||||
|
(fromJSON (readFile ../../configuration.sample.json) // args);
|
||||||
|
|
||||||
|
in
|
||||||
|
{
|
||||||
|
check-deployment-cli-nothing = makeTestDeployment { };
|
||||||
|
|
||||||
|
check-deployment-cli-mastodon-pixelfed = makeTestDeployment {
|
||||||
|
mastodon.enable = true;
|
||||||
|
pixelfed.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
check-deployment-cli-peertube = makeTestDeployment {
|
||||||
|
peertube.enable = true;
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,90 +0,0 @@
|
||||||
{
|
|
||||||
self,
|
|
||||||
inputs,
|
|
||||||
lib,
|
|
||||||
sources,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
|
|
||||||
let
|
|
||||||
inherit (builtins) fromJSON readFile listToAttrs;
|
|
||||||
|
|
||||||
targetMachines = [
|
|
||||||
"garage"
|
|
||||||
"mastodon"
|
|
||||||
"peertube"
|
|
||||||
"pixelfed"
|
|
||||||
];
|
|
||||||
pathToRoot = /. + (builtins.unsafeDiscardStringContext self);
|
|
||||||
pathFromRoot = ./.;
|
|
||||||
enableAcme = true;
|
|
||||||
|
|
||||||
in
|
|
||||||
{
|
|
||||||
_class = "flake";
|
|
||||||
|
|
||||||
perSystem =
|
|
||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
checks.deployment-cli = pkgs.testers.runNixOSTest {
|
|
||||||
imports = [
|
|
||||||
../common/nixosTest.nix
|
|
||||||
./nixosTest.nix
|
|
||||||
];
|
|
||||||
_module.args = { inherit inputs sources; };
|
|
||||||
inherit
|
|
||||||
targetMachines
|
|
||||||
pathToRoot
|
|
||||||
pathFromRoot
|
|
||||||
enableAcme
|
|
||||||
;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
nixops4Deployments =
|
|
||||||
let
|
|
||||||
makeTargetResource = nodeName: {
|
|
||||||
imports = [ ../common/targetResource.nix ];
|
|
||||||
_module.args = { inherit inputs sources; };
|
|
||||||
inherit
|
|
||||||
nodeName
|
|
||||||
pathToRoot
|
|
||||||
pathFromRoot
|
|
||||||
enableAcme
|
|
||||||
;
|
|
||||||
};
|
|
||||||
|
|
||||||
## The deployment function - what we are here to test!
|
|
||||||
##
|
|
||||||
## TODO: Modularise `deployment/default.nix` to get rid of the nested
|
|
||||||
## function calls.
|
|
||||||
makeTestDeployment =
|
|
||||||
args:
|
|
||||||
(import ../..)
|
|
||||||
{
|
|
||||||
inherit lib;
|
|
||||||
inherit (inputs) nixops4 nixops4-nixos;
|
|
||||||
fediversity = import ../../../services/fediversity;
|
|
||||||
}
|
|
||||||
(listToAttrs (
|
|
||||||
map (nodeName: {
|
|
||||||
name = "${nodeName}ConfigurationResource";
|
|
||||||
value = makeTargetResource nodeName;
|
|
||||||
}) targetMachines
|
|
||||||
))
|
|
||||||
(fromJSON (readFile ../../configuration.sample.json) // args);
|
|
||||||
|
|
||||||
in
|
|
||||||
{
|
|
||||||
check-deployment-cli-nothing = makeTestDeployment { };
|
|
||||||
|
|
||||||
check-deployment-cli-mastodon-pixelfed = makeTestDeployment {
|
|
||||||
mastodon.enable = true;
|
|
||||||
pixelfed.enable = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
check-deployment-cli-peertube = makeTestDeployment {
|
|
||||||
peertube.enable = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
26
deployment/check/cli/flake-under-test.nix
Normal file
26
deployment/check/cli/flake-under-test.nix
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{
|
||||||
|
inputs = {
|
||||||
|
nixops4.follows = "nixops4-nixos/nixops4";
|
||||||
|
nixops4-nixos.url = "github:nixops4/nixops4-nixos";
|
||||||
|
};
|
||||||
|
|
||||||
|
outputs =
|
||||||
|
inputs:
|
||||||
|
import ./mkFlake.nix inputs (
|
||||||
|
{
|
||||||
|
inputs,
|
||||||
|
sources,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
inputs.nixops4.modules.flake.default
|
||||||
|
];
|
||||||
|
|
||||||
|
nixops4Deployments = import ./deployment/check/cli/deployments.nix {
|
||||||
|
inherit inputs sources lib;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
|
@ -1,4 +1,9 @@
|
||||||
{ inputs, hostPkgs, ... }:
|
{
|
||||||
|
inputs,
|
||||||
|
hostPkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
## Some places need a dummy file that will in fact never be used. We create
|
## Some places need a dummy file that will in fact never be used. We create
|
||||||
|
@ -11,6 +16,21 @@ in
|
||||||
|
|
||||||
name = "deployment-cli";
|
name = "deployment-cli";
|
||||||
|
|
||||||
|
sourceFileset = lib.fileset.unions [
|
||||||
|
./constants.nix
|
||||||
|
./deployments.nix
|
||||||
|
|
||||||
|
# REVIEW: I would like to be able to grab all of `/deployment` minus
|
||||||
|
# `/deployment/check`, but I can't because there is a bunch of other files
|
||||||
|
# in `/deployment`. Maybe we can think of a reorg making things more robust
|
||||||
|
# here? (comment also in panel test)
|
||||||
|
../../default.nix
|
||||||
|
../../options.nix
|
||||||
|
../../configuration.sample.json
|
||||||
|
|
||||||
|
../../../services/fediversity
|
||||||
|
];
|
||||||
|
|
||||||
nodes.deployer =
|
nodes.deployer =
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
|
|
|
@ -60,6 +60,7 @@ in
|
||||||
|
|
||||||
sources.flake-parts
|
sources.flake-parts
|
||||||
sources.flake-inputs
|
sources.flake-inputs
|
||||||
|
sources.git-hooks
|
||||||
|
|
||||||
pkgs.stdenv
|
pkgs.stdenv
|
||||||
pkgs.stdenvNoCC
|
pkgs.stdenvNoCC
|
||||||
|
|
|
@ -13,6 +13,7 @@ let
|
||||||
toJSON
|
toJSON
|
||||||
;
|
;
|
||||||
inherit (lib)
|
inherit (lib)
|
||||||
|
types
|
||||||
fileset
|
fileset
|
||||||
mkOption
|
mkOption
|
||||||
genAttrs
|
genAttrs
|
||||||
|
@ -27,14 +28,6 @@ let
|
||||||
|
|
||||||
forConcat = xs: f: concatStringsSep "\n" (map f xs);
|
forConcat = xs: f: concatStringsSep "\n" (map f xs);
|
||||||
|
|
||||||
## The whole repository, with the flake at its root.
|
|
||||||
## FIXME: We could probably have fileset be the union of ./. with flake.nix
|
|
||||||
## and flake.lock - I doubt we need anything else.
|
|
||||||
src = fileset.toSource {
|
|
||||||
fileset = config.pathToRoot;
|
|
||||||
root = config.pathToRoot;
|
|
||||||
};
|
|
||||||
|
|
||||||
## We will need to override some inputs by the empty flake, so we make one.
|
## We will need to override some inputs by the empty flake, so we make one.
|
||||||
emptyFlake = runCommandNoCC "empty-flake" { } ''
|
emptyFlake = runCommandNoCC "empty-flake" { } ''
|
||||||
mkdir $out
|
mkdir $out
|
||||||
|
@ -53,9 +46,39 @@ in
|
||||||
## FIXME: I wish I could just use `testScript` but with something like
|
## FIXME: I wish I could just use `testScript` but with something like
|
||||||
## `mkOrder` to put this module's string before something else.
|
## `mkOrder` to put this module's string before something else.
|
||||||
extraTestScript = mkOption { };
|
extraTestScript = mkOption { };
|
||||||
|
|
||||||
|
sourceFileset = mkOption {
|
||||||
|
## REVIEW: Upstream to nixpkgs?
|
||||||
|
type = types.mkOptionType {
|
||||||
|
name = "fileset";
|
||||||
|
description = "fileset";
|
||||||
|
descriptionClass = "noun";
|
||||||
|
check = (x: (builtins.tryEval (fileset.unions [ x ])).success);
|
||||||
|
merge = (_: defs: fileset.unions (map (x: x.value) defs));
|
||||||
|
};
|
||||||
|
description = ''
|
||||||
|
A fileset that will be copied to the deployer node in the current
|
||||||
|
working directory. This should contain all the files that are
|
||||||
|
necessary to run that particular test, such as the NixOS
|
||||||
|
modules necessary to evaluate a deployment.
|
||||||
|
'';
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
|
sourceFileset = fileset.unions [
|
||||||
|
# NOTE: not the flake itself; it will be overridden.
|
||||||
|
../../../mkFlake.nix
|
||||||
|
../../../flake.lock
|
||||||
|
../../../npins
|
||||||
|
|
||||||
|
./sharedOptions.nix
|
||||||
|
./targetNode.nix
|
||||||
|
./targetResource.nix
|
||||||
|
|
||||||
|
(config.pathToCwd + "/flake-under-test.nix")
|
||||||
|
];
|
||||||
|
|
||||||
acmeNodeIP = config.nodes.acme.networking.primaryIPAddress;
|
acmeNodeIP = config.nodes.acme.networking.primaryIPAddress;
|
||||||
|
|
||||||
nodes =
|
nodes =
|
||||||
|
@ -103,8 +126,16 @@ in
|
||||||
${n}.wait_for_unit("multi-user.target")
|
${n}.wait_for_unit("multi-user.target")
|
||||||
'')}
|
'')}
|
||||||
|
|
||||||
|
## A subset of the repository that is necessary for this test. It will be
|
||||||
|
## copied inside the test. The smaller this set, the faster our CI, because we
|
||||||
|
## won't need to re-run when things change outside of it.
|
||||||
with subtest("Unpacking"):
|
with subtest("Unpacking"):
|
||||||
deployer.succeed("cp -r --no-preserve=mode ${src}/* .")
|
deployer.succeed("cp -r --no-preserve=mode ${
|
||||||
|
fileset.toSource {
|
||||||
|
root = ../../..;
|
||||||
|
fileset = config.sourceFileset;
|
||||||
|
}
|
||||||
|
}/* .")
|
||||||
|
|
||||||
with subtest("Configure the network"):
|
with subtest("Configure the network"):
|
||||||
${forConcat config.targetMachines (
|
${forConcat config.targetMachines (
|
||||||
|
@ -134,7 +165,13 @@ in
|
||||||
|
|
||||||
## NOTE: This is super slow. It could probably be optimised in Nix, for
|
## NOTE: This is super slow. It could probably be optimised in Nix, for
|
||||||
## instance by allowing to grab things directly from the host's store.
|
## instance by allowing to grab things directly from the host's store.
|
||||||
with subtest("Override the lock"):
|
##
|
||||||
|
## NOTE: We use the repository as-is (cf `src` above), overriding only
|
||||||
|
## `flake.nix` by our `flake-under-test.nix`. We also override the flake
|
||||||
|
## lock file to use locally available inputs, as we cannot download them.
|
||||||
|
##
|
||||||
|
with subtest("Override the flake and its lock"):
|
||||||
|
deployer.succeed("cp ${config.pathFromRoot}/flake-under-test.nix flake.nix")
|
||||||
deployer.succeed("""
|
deployer.succeed("""
|
||||||
nix flake lock --extra-experimental-features 'flakes nix-command' \
|
nix flake lock --extra-experimental-features 'flakes nix-command' \
|
||||||
--offline -v \
|
--offline -v \
|
||||||
|
@ -149,8 +186,6 @@ in
|
||||||
inputs.nixops4-nixos.inputs.nixops4.packages.${system}.flake-in-a-bottle
|
inputs.nixops4-nixos.inputs.nixops4.packages.${system}.flake-in-a-bottle
|
||||||
} \
|
} \
|
||||||
--override-input nixops4-nixos/git-hooks-nix ${emptyFlake} \
|
--override-input nixops4-nixos/git-hooks-nix ${emptyFlake} \
|
||||||
\
|
|
||||||
--override-input git-hooks ${inputs.git-hooks} \
|
|
||||||
;
|
;
|
||||||
""")
|
""")
|
||||||
|
|
||||||
|
|
11
deployment/check/panel/constants.nix
Normal file
11
deployment/check/panel/constants.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
targetMachines = [
|
||||||
|
"garage"
|
||||||
|
"mastodon"
|
||||||
|
"peertube"
|
||||||
|
"pixelfed"
|
||||||
|
];
|
||||||
|
pathToRoot = ../../..;
|
||||||
|
pathFromRoot = ./.;
|
||||||
|
enableAcme = true;
|
||||||
|
}
|
19
deployment/check/panel/default.nix
Normal file
19
deployment/check/panel/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
runNixOSTest,
|
||||||
|
inputs,
|
||||||
|
sources,
|
||||||
|
}:
|
||||||
|
|
||||||
|
runNixOSTest {
|
||||||
|
imports = [
|
||||||
|
../common/nixosTest.nix
|
||||||
|
./nixosTest.nix
|
||||||
|
];
|
||||||
|
_module.args = { inherit inputs sources; };
|
||||||
|
inherit (import ./constants.nix)
|
||||||
|
targetMachines
|
||||||
|
pathToRoot
|
||||||
|
pathFromRoot
|
||||||
|
enableAcme
|
||||||
|
;
|
||||||
|
}
|
58
deployment/check/panel/deployment.nix
Normal file
58
deployment/check/panel/deployment.nix
Normal file
|
@ -0,0 +1,58 @@
|
||||||
|
{
|
||||||
|
inputs,
|
||||||
|
sources,
|
||||||
|
lib,
|
||||||
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
inherit (builtins) fromJSON listToAttrs;
|
||||||
|
inherit (import ./constants.nix)
|
||||||
|
targetMachines
|
||||||
|
pathToRoot
|
||||||
|
pathFromRoot
|
||||||
|
enableAcme
|
||||||
|
;
|
||||||
|
|
||||||
|
makeTargetResource = nodeName: {
|
||||||
|
imports = [ ../common/targetResource.nix ];
|
||||||
|
_module.args = { inherit inputs sources; };
|
||||||
|
inherit
|
||||||
|
nodeName
|
||||||
|
pathToRoot
|
||||||
|
pathFromRoot
|
||||||
|
enableAcme
|
||||||
|
;
|
||||||
|
};
|
||||||
|
|
||||||
|
## The deployment function - what we are here to test!
|
||||||
|
##
|
||||||
|
## TODO: Modularise `deployment/default.nix` to get rid of the nested
|
||||||
|
## function calls.
|
||||||
|
makeTestDeployment =
|
||||||
|
args:
|
||||||
|
(import ../..)
|
||||||
|
{
|
||||||
|
inherit lib;
|
||||||
|
inherit (inputs) nixops4 nixops4-nixos;
|
||||||
|
fediversity = import ../../../services/fediversity;
|
||||||
|
}
|
||||||
|
(listToAttrs (
|
||||||
|
map (nodeName: {
|
||||||
|
name = "${nodeName}ConfigurationResource";
|
||||||
|
value = makeTargetResource nodeName;
|
||||||
|
}) targetMachines
|
||||||
|
))
|
||||||
|
args;
|
||||||
|
|
||||||
|
in
|
||||||
|
makeTestDeployment (
|
||||||
|
fromJSON (
|
||||||
|
let
|
||||||
|
env = builtins.getEnv "DEPLOYMENT";
|
||||||
|
in
|
||||||
|
if env == "" then
|
||||||
|
throw "The DEPLOYMENT environment needs to be set. You do not want to use this deployment unless in the `deployment-panel` NixOS test."
|
||||||
|
else
|
||||||
|
env
|
||||||
|
)
|
||||||
|
)
|
|
@ -1,94 +0,0 @@
|
||||||
{
|
|
||||||
self,
|
|
||||||
inputs,
|
|
||||||
lib,
|
|
||||||
sources,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
|
|
||||||
let
|
|
||||||
inherit (builtins)
|
|
||||||
fromJSON
|
|
||||||
listToAttrs
|
|
||||||
;
|
|
||||||
|
|
||||||
targetMachines = [
|
|
||||||
"garage"
|
|
||||||
"mastodon"
|
|
||||||
"peertube"
|
|
||||||
"pixelfed"
|
|
||||||
];
|
|
||||||
pathToRoot = /. + (builtins.unsafeDiscardStringContext self);
|
|
||||||
pathFromRoot = ./.;
|
|
||||||
enableAcme = true;
|
|
||||||
|
|
||||||
in
|
|
||||||
{
|
|
||||||
_class = "flake";
|
|
||||||
|
|
||||||
perSystem =
|
|
||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
checks.deployment-panel = pkgs.testers.runNixOSTest {
|
|
||||||
imports = [
|
|
||||||
../common/nixosTest.nix
|
|
||||||
./nixosTest.nix
|
|
||||||
];
|
|
||||||
_module.args = { inherit inputs sources; };
|
|
||||||
inherit
|
|
||||||
targetMachines
|
|
||||||
pathToRoot
|
|
||||||
pathFromRoot
|
|
||||||
enableAcme
|
|
||||||
;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
nixops4Deployments =
|
|
||||||
let
|
|
||||||
makeTargetResource = nodeName: {
|
|
||||||
imports = [ ../common/targetResource.nix ];
|
|
||||||
_module.args = { inherit inputs sources; };
|
|
||||||
inherit
|
|
||||||
nodeName
|
|
||||||
pathToRoot
|
|
||||||
pathFromRoot
|
|
||||||
enableAcme
|
|
||||||
;
|
|
||||||
};
|
|
||||||
|
|
||||||
## The deployment function - what we are here to test!
|
|
||||||
##
|
|
||||||
## TODO: Modularise `deployment/default.nix` to get rid of the nested
|
|
||||||
## function calls.
|
|
||||||
makeTestDeployment =
|
|
||||||
args:
|
|
||||||
(import ../..)
|
|
||||||
{
|
|
||||||
inherit lib;
|
|
||||||
inherit (inputs) nixops4 nixops4-nixos;
|
|
||||||
fediversity = import ../../../services/fediversity;
|
|
||||||
}
|
|
||||||
(listToAttrs (
|
|
||||||
map (nodeName: {
|
|
||||||
name = "${nodeName}ConfigurationResource";
|
|
||||||
value = makeTargetResource nodeName;
|
|
||||||
}) targetMachines
|
|
||||||
))
|
|
||||||
args;
|
|
||||||
|
|
||||||
in
|
|
||||||
{
|
|
||||||
check-deployment-panel = makeTestDeployment (
|
|
||||||
fromJSON (
|
|
||||||
let
|
|
||||||
env = builtins.getEnv "DEPLOYMENT";
|
|
||||||
in
|
|
||||||
if env == "" then
|
|
||||||
throw "The DEPLOYMENT environment needs to be set. You do not want to use this deployment unless in the `deployment-panel` NixOS test."
|
|
||||||
else
|
|
||||||
env
|
|
||||||
)
|
|
||||||
);
|
|
||||||
};
|
|
||||||
}
|
|
26
deployment/check/panel/flake-under-test.nix
Normal file
26
deployment/check/panel/flake-under-test.nix
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{
|
||||||
|
inputs = {
|
||||||
|
nixops4.follows = "nixops4-nixos/nixops4";
|
||||||
|
nixops4-nixos.url = "github:nixops4/nixops4-nixos";
|
||||||
|
};
|
||||||
|
|
||||||
|
outputs =
|
||||||
|
inputs:
|
||||||
|
import ./mkFlake.nix inputs (
|
||||||
|
{
|
||||||
|
inputs,
|
||||||
|
sources,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
inputs.nixops4.modules.flake.default
|
||||||
|
];
|
||||||
|
|
||||||
|
nixops4Deployments.check-deployment-panel = import ./deployment/check/panel/deployment.nix {
|
||||||
|
inherit inputs sources lib;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
|
@ -125,6 +125,20 @@ in
|
||||||
|
|
||||||
name = "deployment-panel";
|
name = "deployment-panel";
|
||||||
|
|
||||||
|
sourceFileset = lib.fileset.unions [
|
||||||
|
./constants.nix
|
||||||
|
./deployment.nix
|
||||||
|
|
||||||
|
# REVIEW: I would like to be able to grab all of `/deployment` minus
|
||||||
|
# `/deployment/check`, but I can't because there is a bunch of other files
|
||||||
|
# in `/deployment`. Maybe we can think of a reorg making things more robust
|
||||||
|
# here? (comment also in CLI test)
|
||||||
|
../../default.nix
|
||||||
|
../../options.nix
|
||||||
|
|
||||||
|
../../../services/fediversity
|
||||||
|
];
|
||||||
|
|
||||||
## The panel's module sets `nixpkgs.overlays` which clashes with
|
## The panel's module sets `nixpkgs.overlays` which clashes with
|
||||||
## `pkgsReadOnly`. We disable it here.
|
## `pkgsReadOnly`. We disable it here.
|
||||||
node.pkgsReadOnly = false;
|
node.pkgsReadOnly = false;
|
||||||
|
|
|
@ -1,9 +1,26 @@
|
||||||
|
{ inputs, sources, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
_class = "flake";
|
_class = "flake";
|
||||||
|
|
||||||
imports = [
|
perSystem =
|
||||||
./check/basic/flake-part.nix
|
{ pkgs, ... }:
|
||||||
./check/cli/flake-part.nix
|
{
|
||||||
./check/panel/flake-part.nix
|
checks = {
|
||||||
];
|
deployment-basic = import ./check/basic {
|
||||||
|
inherit (pkgs.testers) runNixOSTest;
|
||||||
|
inherit inputs sources;
|
||||||
|
};
|
||||||
|
|
||||||
|
deployment-cli = import ./check/cli {
|
||||||
|
inherit (pkgs.testers) runNixOSTest;
|
||||||
|
inherit inputs sources;
|
||||||
|
};
|
||||||
|
|
||||||
|
deployment-panel = import ./check/panel {
|
||||||
|
inherit (pkgs.testers) runNixOSTest;
|
||||||
|
inherit inputs sources;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
84
flake.lock
generated
84
flake.lock
generated
|
@ -59,22 +59,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"flake-compat_2": {
|
"flake-compat_2": {
|
||||||
"flake": false,
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1696426674,
|
|
||||||
"narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=",
|
|
||||||
"owner": "edolstra",
|
|
||||||
"repo": "flake-compat",
|
|
||||||
"rev": "0f9255e01c2351cc7d116c072cb317785dd33b33",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "edolstra",
|
|
||||||
"repo": "flake-compat",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"flake-compat_3": {
|
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1733328505,
|
"lastModified": 1733328505,
|
||||||
|
@ -90,7 +74,7 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"flake-compat_4": {
|
"flake-compat_3": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1696426674,
|
"lastModified": 1696426674,
|
||||||
|
@ -183,32 +167,12 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"git-hooks": {
|
"git-hooks-nix": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"flake-compat": "flake-compat",
|
"flake-compat": "flake-compat",
|
||||||
"gitignore": "gitignore",
|
"gitignore": "gitignore",
|
||||||
"nixpkgs": "nixpkgs"
|
"nixpkgs": "nixpkgs"
|
||||||
},
|
},
|
||||||
"locked": {
|
|
||||||
"lastModified": 1742649964,
|
|
||||||
"narHash": "sha256-DwOTp7nvfi8mRfuL1escHDXabVXFGT1VlPD1JHrtrco=",
|
|
||||||
"owner": "cachix",
|
|
||||||
"repo": "git-hooks.nix",
|
|
||||||
"rev": "dcf5072734cb576d2b0c59b2ac44f5050b5eac82",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "cachix",
|
|
||||||
"repo": "git-hooks.nix",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"git-hooks-nix": {
|
|
||||||
"inputs": {
|
|
||||||
"flake-compat": "flake-compat_2",
|
|
||||||
"gitignore": "gitignore_2",
|
|
||||||
"nixpkgs": "nixpkgs_2"
|
|
||||||
},
|
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1737465171,
|
"lastModified": 1737465171,
|
||||||
"narHash": "sha256-R10v2hoJRLq8jcL4syVFag7nIGE7m13qO48wRIukWNg=",
|
"narHash": "sha256-R10v2hoJRLq8jcL4syVFag7nIGE7m13qO48wRIukWNg=",
|
||||||
|
@ -263,27 +227,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"gitignore": {
|
"gitignore": {
|
||||||
"inputs": {
|
|
||||||
"nixpkgs": [
|
|
||||||
"git-hooks",
|
|
||||||
"nixpkgs"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1709087332,
|
|
||||||
"narHash": "sha256-HG2cCnktfHsKV0s4XW83gU3F57gaTljL9KNSuG6bnQs=",
|
|
||||||
"owner": "hercules-ci",
|
|
||||||
"repo": "gitignore.nix",
|
|
||||||
"rev": "637db329424fd7e46cf4185293b9cc8c88c95394",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "hercules-ci",
|
|
||||||
"repo": "gitignore.nix",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"gitignore_2": {
|
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"nixpkgs": [
|
"nixpkgs": [
|
||||||
"nixops4-nixos",
|
"nixops4-nixos",
|
||||||
|
@ -323,7 +266,7 @@
|
||||||
},
|
},
|
||||||
"nix": {
|
"nix": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"flake-compat": "flake-compat_3",
|
"flake-compat": "flake-compat_2",
|
||||||
"flake-parts": "flake-parts_3",
|
"flake-parts": "flake-parts_3",
|
||||||
"git-hooks-nix": "git-hooks-nix_2",
|
"git-hooks-nix": "git-hooks-nix_2",
|
||||||
"nixfmt": "nixfmt",
|
"nixfmt": "nixfmt",
|
||||||
|
@ -401,7 +344,7 @@
|
||||||
"flake-parts": "flake-parts_2",
|
"flake-parts": "flake-parts_2",
|
||||||
"nix": "nix",
|
"nix": "nix",
|
||||||
"nix-cargo-integration": "nix-cargo-integration",
|
"nix-cargo-integration": "nix-cargo-integration",
|
||||||
"nixpkgs": "nixpkgs_3",
|
"nixpkgs": "nixpkgs_2",
|
||||||
"nixpkgs-old": "nixpkgs-old"
|
"nixpkgs-old": "nixpkgs-old"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
|
@ -535,22 +478,6 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"nixpkgs_2": {
|
"nixpkgs_2": {
|
||||||
"locked": {
|
|
||||||
"lastModified": 1730768919,
|
|
||||||
"narHash": "sha256-8AKquNnnSaJRXZxc5YmF/WfmxiHX6MMZZasRP6RRQkE=",
|
|
||||||
"owner": "NixOS",
|
|
||||||
"repo": "nixpkgs",
|
|
||||||
"rev": "a04d33c0c3f1a59a2c1cb0c6e34cd24500e5a1dc",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "NixOS",
|
|
||||||
"ref": "nixpkgs-unstable",
|
|
||||||
"repo": "nixpkgs",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"nixpkgs_3": {
|
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1738410390,
|
"lastModified": 1738410390,
|
||||||
"narHash": "sha256-xvTo0Aw0+veek7hvEVLzErmJyQkEcRk6PSR4zsRQFEc=",
|
"narHash": "sha256-xvTo0Aw0+veek7hvEVLzErmJyQkEcRk6PSR4zsRQFEc=",
|
||||||
|
@ -591,7 +518,7 @@
|
||||||
},
|
},
|
||||||
"purescript-overlay": {
|
"purescript-overlay": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"flake-compat": "flake-compat_4",
|
"flake-compat": "flake-compat_3",
|
||||||
"nixpkgs": [
|
"nixpkgs": [
|
||||||
"nixops4-nixos",
|
"nixops4-nixos",
|
||||||
"nixops4",
|
"nixops4",
|
||||||
|
@ -634,7 +561,6 @@
|
||||||
},
|
},
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"git-hooks": "git-hooks",
|
|
||||||
"nixops4": [
|
"nixops4": [
|
||||||
"nixops4-nixos",
|
"nixops4-nixos",
|
||||||
"nixops4"
|
"nixops4"
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
{
|
{
|
||||||
inputs = {
|
inputs = {
|
||||||
git-hooks.url = "github:cachix/git-hooks.nix";
|
|
||||||
nixops4.follows = "nixops4-nixos/nixops4";
|
nixops4.follows = "nixops4-nixos/nixops4";
|
||||||
nixops4-nixos.url = "github:nixops4/nixops4-nixos";
|
nixops4-nixos.url = "github:nixops4/nixops4-nixos";
|
||||||
};
|
};
|
||||||
|
@ -8,10 +7,10 @@
|
||||||
outputs =
|
outputs =
|
||||||
inputs:
|
inputs:
|
||||||
import ./mkFlake.nix inputs (
|
import ./mkFlake.nix inputs (
|
||||||
{ inputs, ... }:
|
{ inputs, sources, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
"${inputs.git-hooks}/flake-module.nix"
|
"${sources.git-hooks}/flake-module.nix"
|
||||||
inputs.nixops4.modules.flake.default
|
inputs.nixops4.modules.flake.default
|
||||||
|
|
||||||
./deployment/flake-part.nix
|
./deployment/flake-part.nix
|
||||||
|
@ -24,9 +23,13 @@
|
||||||
{
|
{
|
||||||
pkgs,
|
pkgs,
|
||||||
lib,
|
lib,
|
||||||
|
system,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
|
checks = {
|
||||||
|
panel = (import ./. { inherit sources system; }).tests.panel.basic;
|
||||||
|
};
|
||||||
formatter = pkgs.nixfmt-rfc-style;
|
formatter = pkgs.nixfmt-rfc-style;
|
||||||
|
|
||||||
pre-commit.settings.hooks =
|
pre-commit.settings.hooks =
|
||||||
|
|
|
@ -1,9 +1,21 @@
|
||||||
{ modulesPath, ... }:
|
let
|
||||||
|
# pulling this in manually over from module args resolves an infinite recursion.
|
||||||
|
# FIXME: instead untangle `//infra/flake-part.nix` and make it stop passing wild functions.
|
||||||
|
# move moving towards a portable-services-like pattern where some things are submodules.
|
||||||
|
# Right now those wild functions are for parameterising a bunch of things,
|
||||||
|
# and the modular way to do that would be options --
|
||||||
|
# obviously you can't use those for `imports`,
|
||||||
|
# so one way to decouple fixpoints is to isolate them into submodules.
|
||||||
|
# Therefore one approach would be to try to go down the call graph,
|
||||||
|
# and see where what's currently a function could be a `submodule` field of something else.
|
||||||
|
sources = import ../../npins;
|
||||||
|
in
|
||||||
{
|
{
|
||||||
_class = "nixos";
|
_class = "nixos";
|
||||||
|
|
||||||
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
|
imports = [
|
||||||
|
"${sources.nixpkgs}/nixos/modules/profiles/qemu-guest.nix"
|
||||||
|
];
|
||||||
|
|
||||||
boot = {
|
boot = {
|
||||||
initrd = {
|
initrd = {
|
||||||
|
|
|
@ -33,6 +33,10 @@ let
|
||||||
;
|
;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nixos.module.imports = [
|
||||||
|
./common/proxmox-qemu-vm.nix
|
||||||
|
];
|
||||||
|
|
||||||
imports =
|
imports =
|
||||||
[
|
[
|
||||||
./common/resource.nix
|
./common/resource.nix
|
||||||
|
@ -40,7 +44,6 @@ let
|
||||||
++ (
|
++ (
|
||||||
if isTestVm then
|
if isTestVm then
|
||||||
[
|
[
|
||||||
./common/proxmox-qemu-vm.nix
|
|
||||||
../machines/operator/${vmName}
|
../machines/operator/${vmName}
|
||||||
{
|
{
|
||||||
nixos.module.users.users.root.openssh.authorizedKeys.keys = [
|
nixos.module.users.users.root.openssh.authorizedKeys.keys = [
|
||||||
|
|
1
keys/cd-ssh-key.pub
Normal file
1
keys/cd-ssh-key.pub
Normal file
|
@ -0,0 +1 @@
|
||||||
|
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMlsYTtMx3hFO8B5B8iHaXL2JKj9izHeC+/AMhIWXBPs cd-age
|
|
@ -35,4 +35,5 @@ in
|
||||||
contributors = collectKeys ./contributors;
|
contributors = collectKeys ./contributors;
|
||||||
systems = collectKeys ./systems;
|
systems = collectKeys ./systems;
|
||||||
panel = removeTrailingWhitespace (readFile ./panel-ssh-key.pub);
|
panel = removeTrailingWhitespace (readFile ./panel-ssh-key.pub);
|
||||||
|
cd = removeTrailingWhitespace (readFile ./cd-ssh-key.pub);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
sources,
|
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
name = "panel";
|
name = "panel";
|
||||||
|
sources = import ../../../npins;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
_class = "nixos";
|
_class = "nixos";
|
||||||
|
|
|
@ -48,7 +48,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
## NOTE: This is a physical machine, so is not covered by disko
|
## NOTE: This is a physical machine, so is not covered by disko
|
||||||
fileSystems."/" = {
|
fileSystems."/" = lib.mkForce {
|
||||||
device = "rpool/root";
|
device = "rpool/root";
|
||||||
fsType = "zfs";
|
fsType = "zfs";
|
||||||
};
|
};
|
||||||
|
@ -58,7 +58,7 @@ in
|
||||||
fsType = "zfs";
|
fsType = "zfs";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/boot" = {
|
fileSystems."/boot" = lib.mkForce {
|
||||||
device = "/dev/disk/by-uuid/50B2-DD3F";
|
device = "/dev/disk/by-uuid/50B2-DD3F";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
options = [
|
options = [
|
||||||
|
|
|
@ -1,6 +1,13 @@
|
||||||
## This file contains a tweak of flake-parts's `mkFlake` function to splice in
|
## This file contains a tweak of flake-parts's `mkFlake` function to splice in
|
||||||
## sources taken from npins.
|
## sources taken from npins.
|
||||||
|
|
||||||
|
## NOTE: Much of the logic in this file feels like it should be not super
|
||||||
|
## specific to fediversity. Could it make sense to extract the core of this to
|
||||||
|
## another place it feels closer to in spirit, such as @fricklerhandwerk's
|
||||||
|
## flake-inputs (which this code already depends on anyway, and which already
|
||||||
|
## contained two distinct helpers for migrating away from flakes)? cf
|
||||||
|
## https://git.fediversity.eu/Fediversity/Fediversity/pulls/447#issuecomment-8671
|
||||||
|
|
||||||
inputs@{ self, ... }:
|
inputs@{ self, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
|
@ -1,17 +1,19 @@
|
||||||
age-encryption.org/v1
|
age-encryption.org/v1
|
||||||
-> ssh-ed25519 Jpc21A 9edPaA2tT4SeYNTPzF0E157daC2o+JH/WQQCT+vLbFg
|
-> ssh-ed25519 Jpc21A bBCQmvfRUwJuIXbpVJ092XUBVszGrb6gILGbgV9j9BY
|
||||||
C48EtLdhB75TTzfEZTw1DypicHiVlSmFzjfbqfO9N/8
|
7DEGwhqdfqMs5cxXtlMkSTPjw4qhczBgW0dmoJ6dh6g
|
||||||
-> ssh-ed25519 BAs8QA T+kXpZg1v0XRkub5DWir7vYwO7KaOJLZBNYxxXiBUCw
|
-> ssh-ed25519 BAs8QA oiVedFC6UklEFCJUybGr93+XrddyCtV4r4TnE4nhpWI
|
||||||
zBRwMTDpyI7twEwUGsmJYyYPw9btBx5Kakj1yT+XY8U
|
xasnkP4NCl9TuYSE1u0Xi0b/PiwcrfHCz2QMnpTjLcU
|
||||||
-> ssh-ed25519 ofQnlg 4UoEDY/tdKz8LrX1BkBU1/cn+vSaYLUl7xX9YmzANBY
|
-> ssh-ed25519 ofQnlg LrMcWdaEUVyIgd/KznwJW/2sucIu5MuxDEcEJAmf8mA
|
||||||
8CACq1n3AJgD9IyPN23iRvThqsfQFF5+jmkKnhun24U
|
p6pQoisuXre2J4r6ArV6C6lKO2J/aNdBFhqLPBoZ2wA
|
||||||
-> ssh-ed25519 COspvA HxcbkqHL+LpVmwb+Fo5JuUU+C+Pxzdxtb0yZHixwuzM
|
-> ssh-ed25519 COspvA q2OGeVofPKyGCpr4Mf9VoaRvZCWTRl8n2mvkQOdTnyQ
|
||||||
7FIhxdbjHJlgQQgjrHHUK5cecqs5aT7X3I8TWf8c2gc
|
M+ffAGecJG/94k/Z5DdokltrZppS2IcxkZa8JKHwIMs
|
||||||
-> ssh-ed25519 2XrTgw R6Ia8MVIZKPnNZ0rspZ34EqoY8fOLeB9H7vnvNBLg1g
|
-> ssh-ed25519 2XrTgw Bsz/G4QderToPSfMKOR6s5yWb0xCGUlsjGJxJYQNBRc
|
||||||
55NUqz5Yygt6FKJ3bR5iHxQp8G7S2gyFwrJNX1Pb/2Y
|
JYrXZb8qj1Yi9u5bnI/WzuNxy7gyFLCTIUaGNmcOYnk
|
||||||
-> ssh-ed25519 awJeHA hJdTuAScoewVMt7HWiisSkL0zSeClFzYzzKL84G893o
|
-> ssh-ed25519 awJeHA KKJMQSt0PvC6P+T/kxQv96tSBdLQLiY2f8q35IwGm28
|
||||||
ou780VLrW1s4d6L+lEVu3kXaGn4dvtFPA31supwEL50
|
p7Cf2HLlPl0qmsO6Hh5zwVgKkEs3A6fdSBndMKsacbk
|
||||||
-> ssh-ed25519 Fa25Dw mJcqnXA3fQeoKrG7RJ7nVeLxPvrxqbj+lJdx6jQ9IR8
|
-> ssh-ed25519 Fa25Dw 3m/qyannP4gjXxkUuO0LQRU8Z8HXOg4WReMDd7786y8
|
||||||
f5Q7mrQSSDsm1Z/uSAnvx66mgnRC3XaBLQrVL9f/Ijs
|
dNMyiBGeJDrBScE9TEyZZ7+MGMG6FLuoRTK82EVeX1w
|
||||||
--- W/KmboXTLV12X6WtVQKHNe+ZHvS2q9EHUZwofSgJSE8
|
-> ssh-ed25519 i+ecmQ oCs4Ep2K75yjmUOh1ox4F25tGq+O/mZ2/c2E8+IRlEc
|
||||||
^kûÚ h©0ÔkÇ ¢¸_Ç·ûQÞm‘’7\òÖ}÷Áë?½qø‚<ÿm
|
0Wc9gDxhvHK5tEVM5kJ0mQXc3kp7tJ2JNHg54N0+tJ8
|
||||||
|
--- mXrqbcHxjjkS5MrQaCVm4hTsAUEENAWlIYtiYx6rtas
|
||||||
|
ž`€úì}öÙ7Ù>iŒbàéëÕè/&ɪŠwŽ„ì7àí[ã±Hˆc“
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -7,11 +7,12 @@ let
|
||||||
|
|
||||||
keys = import ../keys;
|
keys = import ../keys;
|
||||||
contributors = attrValues keys.contributors;
|
contributors = attrValues keys.contributors;
|
||||||
|
cd = [ keys.cd ];
|
||||||
in
|
in
|
||||||
|
|
||||||
concatMapAttrs
|
concatMapAttrs
|
||||||
(name: systems: {
|
(name: systems: {
|
||||||
"${name}.age".publicKeys = contributors ++ systems;
|
"${name}.age".publicKeys = contributors ++ systems ++ cd;
|
||||||
})
|
})
|
||||||
|
|
||||||
(
|
(
|
||||||
|
|
|
@ -1,18 +1,19 @@
|
||||||
age-encryption.org/v1
|
age-encryption.org/v1
|
||||||
-> ssh-ed25519 Jpc21A EuMYAiZX+4A12eu19mIY7u+WYF7NJ9qJosQSVlxR6n8
|
-> ssh-ed25519 Jpc21A NStZFZPTHMhVCnQ5Zkbl39vWztrxfsSXok24/e8H7QQ
|
||||||
bK5CMXAmP23t1p9bgmqoVg4Qcu2qYKGc4t36v8e9eow
|
JjHP6Cus76PGYYxpbnc2cSZ79zvdD8LISYDPbvXsnqU
|
||||||
-> ssh-ed25519 BAs8QA IwRyitDNTzUPzQAUbDNEKjFiF8WPD/OyztOZQeoTEzw
|
-> ssh-ed25519 BAs8QA iocHfHjWlEUsbtibqEbYDceAqURr2vjxuYapqon9hyU
|
||||||
OwiTWvk4NmUgExav0uH6HlThDNU5hsKXfR6KHsFOV3I
|
ljL+olZdhWtHeV3uh3pOu22+sY13wPn2vKQDduPSqVs
|
||||||
-> ssh-ed25519 ofQnlg 3TcMbLX1JsQL8+Gqy7IFZwykZr2BspvPCuZT1SHtnQQ
|
-> ssh-ed25519 ofQnlg 9YVfMKyoP3+xtzg/ok2I9yf3YdIYoBpUJa/3d2N/8lI
|
||||||
Ci5OeBj2aiC8ut9jIEUMt3qfYH+cJrnVud6AH54Ndn8
|
2yUalyj7O3c1YDA2xTb9QNYrFBDHwcyGBX3mydv0ifI
|
||||||
-> ssh-ed25519 COspvA 0t9f3Wu3ILv4QTJhwT619y+7XFrryCLbpIZC6aE+qQI
|
-> ssh-ed25519 COspvA cOSNsZXBbhQ/B49fq3KwcY6siVrTz48doTrta/0d/Hw
|
||||||
oPQP48F6oO/tkqLZDdjkGtIap7KHiAknbpTNL6/yLaU
|
jcRtVxA/tVFM9btPAPI6zKk8BwAVlaQlvHC203MpmIQ
|
||||||
-> ssh-ed25519 2XrTgw YOZsaYQH9vMH0QqSXGh8GyhRV4MbcBGPFfFaKpo3Ckk
|
-> ssh-ed25519 2XrTgw d3EKtYkxjeJZ8kt3ofIklGmRwUCgTIB/WVVlvxggGRk
|
||||||
kUShJbADA+6bpx2adxvzlI/0jSM5bIBfZfdSE/7Vm5Y
|
IhcrpWN9xFsKRw9iCfYMONPOU7TpTt4kTBNwMDtk7zo
|
||||||
-> ssh-ed25519 awJeHA dF3m0hQWX9c0EezDr56Kt/F4d1Uim7NwvIX6zRws0Eo
|
-> ssh-ed25519 awJeHA Ei64e3+FJDM6S8NP+YfEWEg9t72qTXZ0IdZE8dYQPm4
|
||||||
pst243yrARODwrnyz8cJAzgDxdPOUsRbs7yPZePABFs
|
ggRc86sXin06eXJkLbK8CdJFDa1237WMfSgwNd5ngmM
|
||||||
-> ssh-ed25519 dgBsjw PUYHcP/tgNnKyvlIoJRcNcW3zabVV1iHXIWfKqgW9xc
|
-> ssh-ed25519 dgBsjw 9etK6tNrFlWVAKTz5U0TitkiGYLKTad3QiRWVpLPrwM
|
||||||
tXNjSuVH/g/oN5o75FPkFFpviF7SeFSN9kbqURvgMDE
|
xHLzFnRtcvpVZYZrxWz5q4uadhHrHVlfqjteOWfIccE
|
||||||
--- wHgBAN9c6F6T5hFJGo8uH8zqDkQDwx3/jVNKUtQ3arE
|
-> ssh-ed25519 i+ecmQ SDTnYBLMOaH173B/wqaOifE6a90gSesRqMHmX7/iZFk
|
||||||
«Ñ¢Á
|
kS9tuKnMXCXNUnoZ06DisOOyZHe/mZl4a0JRA+eynE8
|
||||||
ò@µú¡fÃ`m;ÕcæäU²€ùò£Íd…eS’èyfv¿»¡€J?ø `œfj£Äa}lÃó ¿Úxç²BÇt2èfìôm08ÓoÝtRál9˜èx¤¢ŒÅž›æ÷
|
--- C0R5WxDDCqQGxyvFoeNX838az0bjp55PGh//1NFG4LE
|
||||||
|
ŠÉY—±³<EFBFBD>„ÏKRÇËej±éŒ7xÑíE¹ Óì¾7jÏ-œJý«[ÀF?Ÿ=-w‘XMC~)èÅ›ƒ<E280BA>Éõb«ëƒCÜ4ÌÖÞOwý~–¿š8ñv—ÙÜžèX»ØÆ’ƒí!5¦
|
Binary file not shown.
Binary file not shown.
|
@ -21,11 +21,11 @@ For those that know it, we could say that the current module is an analogous of
|
||||||
|
|
||||||
## Content of this directory
|
## Content of this directory
|
||||||
|
|
||||||
- [fediversity][./fediversity] contains the definition of the services. Look in
|
- [fediversity](./fediversity) contains the definition of the services. Look in
|
||||||
particular at its `default.nix` that contains the definition of the options.
|
particular at its `default.nix` that contains the definition of the options.
|
||||||
|
|
||||||
- [vm][./vm] contains options specific to making the service run in local QEMU
|
- [vm](./vm) contains options specific to making the service run in local QEMU
|
||||||
VMs. These modules will for instance override the defaults to disable SSL, and
|
VMs. These modules will for instance override the defaults to disable SSL, and
|
||||||
they will add virtualisation options to forward ports, for instance.
|
they will add virtualisation options to forward ports, for instance.
|
||||||
|
|
||||||
- [tests][./tests] contain full NixOS tests of the services.
|
- [tests](./tests) contain full NixOS tests of the services.
|
||||||
|
|
Loading…
Add table
Reference in a new issue