Correct the arguments for proxy

This commit is contained in:
Andreas Zweili 2022-11-03 11:08:54 +01:00
parent 8ad8d93264
commit f55c80c1e7
2 changed files with 4 additions and 4 deletions

View File

@ -38,7 +38,7 @@ inputs.nixpkgs.lib.nixosSystem {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.${custom.username}.imports = [
(import "${inputs.self}/home-manager/${home-module}.nix" { inherit custom pkgs inputs; })
(import "${inputs.self}/home-manager/${home-module}.nix" { inherit custom inputs; })
];
}
]);

View File

@ -1,12 +1,12 @@
{ custom, hostname, inputs, pkgs, ... }:
{ custom, hostname, inputs }: { pkgs, ... }:
{
imports = [
(import "${inputs.self}/systems/raspi4" {
ip = "10.7.89.99";
inherit hostname inputs pkgs;
inherit hostname inputs;
})
(import "${inputs.self}/modules/restic-server-client" {
time = "00:00"; inherit custom hostname inputs pkgs;
time = "00:00"; inherit custom hostname inputs;
})
"${inputs.self}/modules/nginx-acme-base"
"${inputs.self}/modules/docker"