fix broken config

This commit is contained in:
zuckerberg 2021-06-07 17:40:30 -04:00
parent 5aa31d450b
commit e5f09b802a
2 changed files with 4 additions and 4 deletions

View File

@ -15,7 +15,7 @@ in {
''; '';
# pin nixpkgs for system commands such as "nix shell" # pin nixpkgs for system commands such as "nix shell"
#registry.nixpkgs.flake = inputs.nixpkgs; registry.nixpkgs.flake = inputs.nixpkgs;
}; };
}; };
} }

View File

@ -4,16 +4,16 @@
simple-nixos-mailserver.url = "gitlab:simple-nixos-mailserver/nixos-mailserver/nixos-21.05"; simple-nixos-mailserver.url = "gitlab:simple-nixos-mailserver/nixos-mailserver/nixos-21.05";
}; };
outputs = { self, nixpkgs, simple-nixos-mailserver }: { outputs = inputs: {
nixosConfigurations = nixosConfigurations =
let let
mkSystem = system: path: mkSystem = system: path:
nixpkgs.lib.nixosSystem { inputsw.nixpkgs.lib.nixosSystem {
inherit system; inherit system;
modules = [ modules = [
path path
simple-nixos-mailserver.nixosModule inputs.simple-nixos-mailserver.nixosModule
]; ];
specialArgs = { inherit inputs; }; specialArgs = { inherit inputs; };
}; };