Skip to content
Snippets Groups Projects
testing000.nix 236 B
Newer Older
  • Learn to ignore specific revisions
  • { publicIPv4, publicStoragePort }:
    { imports = [
    
        ./testing000-hardware.nix
    
        ../nixos/modules/private-storage.nix
      ];
    
    
      services.private-storage =
      { enable = true;
        inherit publicIPv4;
        inherit publicStoragePort;
      };