Add contabo wan for ipv6 support

This commit is contained in:
Lillian Violet 2024-03-02 23:15:23 +01:00
parent a2c50346f0
commit ad4a70ffa1
5 changed files with 95 additions and 0 deletions

View file

@ -95,6 +95,13 @@
# Other options beside 'alejandra' include 'nixpkgs-fmt'
formatter = forAllSystems (system: nixpkgs.legacyPackages.${system}.alejandra);
# Reusable nixos modules you might want to export
# These are usually stuff you would upstream into nixpkgs
nixosModules = import ./modules/nixos;
# Reusable home-manager modules you might want to export
# These are usually stuff you would upstream into home-manager
homeManagerModules = import ./modules/home-manager;
# Your custom packages and modifications, exported as overlays
overlays = import ./overlays {inherit inputs;};