diff --git a/nixos-module.nix b/nixos-module.nix index 88e7329..46e3880 100644 --- a/nixos-module.nix +++ b/nixos-module.nix @@ -6,50 +6,48 @@ with pkgs . kernelmaft ; { nixpkgs = { overlays = [ - ( self : super : - { - kernelmaft = { + ( self : super : { + kernelmaft = { - bookwyrm = callPackage ( - import ./bookwyrm.nix + bookwyrm = callPackage ( + import ./bookwyrm.nix + ) {} ; + + python = { + + bw-file-resubmit = callPackage ( + import ./python3.11-bw-file-resubmit.nix ) {} ; - python = { + django-imagekit = callPackage ( + import ./python3.11-django-imagekit.nix + ) {} ; - bw-file-resubmit = callPackage ( - import ./python3.11-bw-file-resubmit.nix - ) {} ; + django-pgtrigger = callPackage ( + import ./python3.11-django-pgtrigger.nix + ) {} ; - django-imagekit = callPackage ( - import ./python3.11-django-imagekit.nix - ) {} ; + django-sass-processor = callPackage ( + import ./python3.11-django-sass-processor.nix + ) {} ; - django-pgtrigger = callPackage ( - import ./python3.11-django-pgtrigger.nix - ) {} ; - - django-sass-processor = callPackage ( - import ./python3.11-django-sass-processor.nix - ) {} ; - - s3-tar = callPackage ( - import ./python3.11-s3-tar.nix - ) {} ; - - } ; + s3-tar = callPackage ( + import ./python3.11-s3-tar.nix + ) {} ; } ; - # TODO: Use the following template once the custom Python packages have been converted to use `buildPythonPackage` - # - # python311 = super . python311 . override { - # packageOverrides = python-self : python-super : { - # package-name = super . callPackage ( import ./package-file.nix ) {} ; - # } ; - # } ; + } ; - } - ) + # TODO: Use the following template once the custom Python packages have been converted to use `buildPythonPackage` + # + # python311 = super . python311 . override { + # packageOverrides = python-self : python-super : { + # package-name = super . callPackage ( import ./package-file.nix ) {} ; + # } ; + # } ; + + } ) ] ; } ;