refactor(grfn): Prepare for restricted-eval

Change-Id: I672ad0898b2ef6a11f8bc9233da0ded4a296fe0e
Reviewed-on: https://cl.tvl.fyi/c/depot/+/5686
Autosubmit: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
Reviewed-by: grfn <grfn@gws.fyi>
This commit is contained in:
Vincent Ambo 2022-05-26 14:44:11 +02:00 committed by tazjin
parent 7a0a4224a5
commit 5d9d03057c
6 changed files with 17 additions and 8 deletions

View file

@ -3,8 +3,8 @@
let
configuration = { ... }: {
imports = [
"${pkgs.path}/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix"
"${pkgs.path}/nixos/modules/installer/cd-dvd/channel.nix"
(pkgs.path + "/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix")
(pkgs.path + "/nixos/modules/installer/cd-dvd/channel.nix")
];
networking.networkmanager.enable = true;

View file

@ -6,10 +6,10 @@ with lib;
imports = [
../modules/common.nix
(modulesPath + "/installer/scan/not-detected.nix")
"${depot.path}/ops/modules/prometheus-fail2ban-exporter.nix"
"${depot.path}/users/grfn/xanthous/server/module.nix"
"${depot.third_party.agenix.src}/modules/age.nix"
"${depot.path}/users/grfn/bbbg/module.nix"
(depot.path.origSrc + "/ops/modules/prometheus-fail2ban-exporter.nix")
(depot.path.origSrc + "/users/grfn/xanthous/server/module.nix")
(depot.third_party.agenix.src + "/modules/age.nix")
(depot.path.origSrc + "/users/grfn/bbbg/module.nix")
];
networking.hostName = "mugwump";