1
0
Fork 0

WIP: change env to environment

This commit is contained in:
lois Verheij 2025-03-12 16:39:30 +01:00 committed by Kiara Grouwstra
parent 76ff180ca7
commit 5355e57378
Signed by: kiara
SSH key fingerprint: SHA256:COspvLoLJ5WC5rFb9ZDe5urVCkK4LJZOsjfF4duRJFU
3 changed files with 24 additions and 20 deletions

View file

@ -141,20 +141,22 @@ in
## - Each normal machine gets a deployment.
## - We add a “default” deployment with all normal machines.
## - We add a “test” deployment with all test machines.
nixops4Deployments = genAttrs machines makeDeployment' // {
default = makeDeployment machines;
test = makeTestDeployment (
fromJSON (
let
env = builtins.getEnv "DEPLOYMENT";
in
if env != "" then
env
else
builtins.trace "env var DEPLOYMENT not set, falling back to ./test-machines/configuration.json!" (readFile ./test-machines/configuration.json)
)
);
};
nixops4Deployments =
builtins.trace (builtins.attrNames inputs) genAttrs machines makeDeployment'
// {
default = makeDeployment machines;
test = makeTestDeployment (
fromJSON (
let
env = builtins.getEnv "DEPLOYMENT";
in
if env != "" then
env
else
builtins.trace "env var DEPLOYMENT not set, falling back to ./test-machines/configuration.json!" (readFile ./test-machines/configuration.json)
)
);
};
flake.nixosConfigurations =
genAttrs machines (makeConfiguration false)
// genAttrs testMachines (makeConfiguration true);

View file

@ -3,8 +3,9 @@
config,
pkgs,
...
}@args:
builtins.trace args {
}:
# builtins.trace args.pkgs
{
fediversityVm = {
vmId = 201;
proxmox = "fediversity";

View file

@ -1,13 +1,14 @@
{
inputs,
config,
pkgs,
# pkgs,
...
}:
let
name = "panel";
panel = (import ../../../panel/default.nix { }).package;
in
# builtins.trace args.pkgs
{
imports = [
../../../panel/nix/configuration.nix
@ -43,8 +44,8 @@ in
STATIC_ROOT = "/var/lib/${name}/static";
};
};
systemd.services.${name}.env = {
REPO_DIR = builtins.trace inputs inputs;
NIX_DIR = pkgs.nix;
systemd.services.${name}.environment = {
REPO_DIR = inputs;
# NIX_DIR = pkgs.nix;
};
}