diff options
Diffstat (limited to 'nixops/modules/ftp/default.nix')
-rw-r--r-- | nixops/modules/ftp/default.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nixops/modules/ftp/default.nix b/nixops/modules/ftp/default.nix index 7f3fd62..af9a75c 100644 --- a/nixops/modules/ftp/default.nix +++ b/nixops/modules/ftp/default.nix | |||
@@ -19,9 +19,9 @@ | |||
19 | extraDomains = { "ftp.immae.eu" = null; }; | 19 | extraDomains = { "ftp.immae.eu" = null; }; |
20 | }; | 20 | }; |
21 | 21 | ||
22 | nixpkgs.config.packageOverrides = oldpkgs: rec { | 22 | nixpkgs.overlays = [ (self: super: { |
23 | pure-ftpd = pkgs.callPackage ./pure-ftpd.nix {}; | 23 | pure-ftpd = self.callPackage ./pure-ftpd.nix {}; |
24 | }; | 24 | }) ]; |
25 | 25 | ||
26 | networking = { | 26 | networking = { |
27 | firewall = { | 27 | firewall = { |